From c1efdf9b0875f2a39488a86cd838947a24fab9fc Mon Sep 17 00:00:00 2001 From: quou Date: Tue, 2 May 2023 21:02:04 +1000 Subject: Initial commit. --- asset.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 asset.h (limited to 'asset.h') diff --git a/asset.h b/asset.h new file mode 100644 index 0000000..68a1e0b --- /dev/null +++ b/asset.h @@ -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 -- cgit v1.2.3-54-g00ecf