SeasonI/tiles.h
sigonasr2 1cb932c151 Setup animation structures and framework
Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
2022-09-09 20:29:18 -05:00

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;
};
};