mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-22 10:04:53 -05:00
18 lines
216 B
C++
18 lines
216 B
C++
#ifndef TILE_H
|
|
#define TILE_H
|
|
|
|
|
|
class Tile
|
|
{
|
|
public:
|
|
Tile() {}
|
|
Tile(int tile, bool xflip, bool yflip, int palette);
|
|
public:
|
|
int tile;
|
|
bool xflip;
|
|
bool yflip;
|
|
int palette;
|
|
};
|
|
|
|
#endif // TILE_H
|