aboutsummaryrefslogtreecommitdiff
path: root/asset.h
diff options
context:
space:
mode:
Diffstat (limited to 'asset.h')
-rw-r--r--asset.h17
1 files changed, 17 insertions, 0 deletions
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