NXEngine v1.0.0.5
[NXEngine.git] / graphics / tileset.h
blobdc37eb42ae73afdfd13d774737fee90e04ebcbcd
2 #ifndef _TILESET_H
3 #define _TILESET_H
5 #define TILE_W 16
6 #define TILE_H 16
8 namespace Tileset
10 bool Init();
11 void Close();
13 bool Load(int new_tileset);
14 void Reload();
15 void draw_tile(int x, int y, int t);
17 NXSurface *GetSurface();
21 #endif