mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-26 03:54:42 -05:00
19 lines
229 B
C++
19 lines
229 B
C++
#pragma once
|
|
#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
|