porymap/include/core/tile.h

22 lines
272 B
C
Raw Normal View History

2020-09-13 23:37:55 +01:00
#pragma once
#ifndef TILE_H
#define TILE_H
class Tile
{
public:
Tile();
Tile(int tileId, bool xflip, bool yflip, int palette);
2021-02-17 02:45:54 +00:00
public:
int tileId;
bool xflip;
bool yflip;
int palette;
static int getIndexInTileset(int);
};
#endif // TILE_H