mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-21 17:45:44 -05:00
17 lines
171 B
C++
Executable File
17 lines
171 B
C++
Executable File
#ifndef TILE_H
|
|
#define TILE_H
|
|
|
|
|
|
class Tile
|
|
{
|
|
public:
|
|
Tile();
|
|
public:
|
|
int tile;
|
|
int xflip;
|
|
int yflip;
|
|
int palette;
|
|
};
|
|
|
|
#endif // TILE_H
|