mario-kart-casio/src/tilemap.h

11 lines
223 B
C

#ifndef _TILEMAP_H
#define _TILEMAP_H
#include <stdbool.h>
unsigned char getTileID(short xPos, short yPos);
enum TileType getTileType(int tileID);
unsigned short samplePixel(short xPos, short yPos);
#endif // _TILEMAP_H