aboutsummaryrefslogtreecommitdiffstats
path: root/assets.h
diff options
context:
space:
mode:
Diffstat (limited to 'assets.h')
-rw-r--r--assets.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/assets.h b/assets.h
new file mode 100644
index 0000000..4fe44c9
--- /dev/null
+++ b/assets.h
@@ -0,0 +1,15 @@
+#ifndef ASSETS_H
+#define ASSETS_H
+
+#include <stddef.h>
+
+struct asset {
+ void *data;
+ size_t size;
+};
+
+#define BIE_ENTRY(name, pos, size) extern struct asset name;
+#include "assets.idx"
+#undef BIE_ENTRY
+
+#endif // ASSETS_H