From 259237fae792e8f19d9b7920b2354f75bc1789e2 Mon Sep 17 00:00:00 2001 From: quou Date: Mon, 23 Sep 2024 21:11:29 +1000 Subject: initial commit, basic platform and rendering code. --- asset.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 asset.h (limited to 'asset.h') diff --git a/asset.h b/asset.h new file mode 100644 index 0000000..74cf66b --- /dev/null +++ b/asset.h @@ -0,0 +1,11 @@ +#ifndef asset_h +#define asset_h + +#define enum_only +#include "pack.h" +#undef enum_only + +const unsigned char* get_asset(Asset_ID id); +const struct Bitmap* get_bitmap(Asset_ID id); + +#endif -- cgit v1.2.3-54-g00ecf