No Description

tile.h 171B

12345678910111213141516
  1. #ifndef TILE_H
  2. #define TILE_H
  3. class Tile
  4. {
  5. public:
  6. Tile();
  7. public:
  8. int tile;
  9. int xflip;
  10. int yflip;
  11. int palette;
  12. };
  13. #endif // TILE_H