#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