ddnet/src/game/client/mapres_tilemap.h

20 lines
225 B
C
Raw Normal View History

2007-05-22 15:03:32 +00:00
// dependencies: image
//
int tilemap_init();
// renders the tilemaps
void tilemap_render(float scale, int fg);
struct mapres_tilemap
{
int image;
int width;
int height;
int x, y;
int scale;
int data;
int main;
};