#ifndef TILE_H
#define TILE_H
class Tile
{
public:
Tile();
int tile;
int xflip;
int yflip;
int palette;
};
#endif // TILE_H