mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-21 18:24:34 +00:00
17 lines
294 B
C++
17 lines
294 B
C++
#pragma once
|
|
|
|
#include "LogTile.h"
|
|
|
|
class NewLogTile : public LogTile
|
|
{
|
|
friend class Tile;
|
|
public:
|
|
static const int TREE_NAMES_LENGTH = 2;
|
|
static const unsigned int TREE_NAMES[TREE_NAMES_LENGTH];
|
|
|
|
protected:
|
|
NewLogTile(int id);
|
|
|
|
public:
|
|
virtual int getWoodType(int data);
|
|
}; |