mario-kart-casio/src/tilemap.h

11 lines
223 B
C
Raw Normal View History

#ifndef _TILEMAP_H
#define _TILEMAP_H
#include <stdbool.h>
2022-07-24 19:20:39 +02:00
unsigned char getTileID(short xPos, short yPos);
2022-12-01 18:24:09 +01:00
enum TileType getTileType(int tileID);
2022-06-28 16:57:25 +02:00
unsigned short samplePixel(short xPos, short yPos);
#endif // _TILEMAP_H