diff options
Diffstat (limited to 'asset.h')
-rw-r--r-- | asset.h | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +#ifndef asset_h +#define asset_h + +#include "render.h" + +#define bitmap_asset_count 1 + +typedef enum { + asset_id_usr = 0, + asset_count +} Asset_ID; + +void load_assets(); + +const Bitmap* get_bitmap(Asset_ID id); + +#endif |