SeasonI/tiles.h
sigonasr2 e6fe560810 Finalized the external splitting of files
Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
2022-10-04 13:39:32 -05:00

15 lines
263 B
C++

#ifndef TILES_H
#define TILES_H
#include "pixelGameEngine.h"
using namespace olc;
class TILE{
public:
int tileX;
int tileY;
TILE(int tileX,int tileY) {
this->tileX=tileX;
this->tileY=tileY;
};
};
#endif