generated from sigonasr2/CPlusPlusProjectTemplate
11 lines
195 B
C
11 lines
195 B
C
|
using namespace olc;
|
||
|
|
||
|
class TILE{
|
||
|
public:
|
||
|
int tileX;
|
||
|
int tileY;
|
||
|
TILE(int tileX,int tileY) {
|
||
|
this->tileX=tileX;
|
||
|
this->tileY=tileY;
|
||
|
};
|
||
|
};
|