From 73aa9b71c1d8b5c5065d1e474f13601da3ca6b20 Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Tue, 22 May 2007 15:03:32 +0000 Subject: started the major restructure of svn --- src/game/mapres_tilemap.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/game/mapres_tilemap.h (limited to 'src/game/mapres_tilemap.h') diff --git a/src/game/mapres_tilemap.h b/src/game/mapres_tilemap.h new file mode 100644 index 00000000..6e9d81be --- /dev/null +++ b/src/game/mapres_tilemap.h @@ -0,0 +1,19 @@ + +// 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; +}; -- cgit 1.4.1