porymap/include/core/tile.h

17 lines
155 B
C
Raw Normal View History

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