summaryrefslogtreecommitdiff
path: root/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'game.h')
-rw-r--r--game.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/game.h b/game.h
new file mode 100644
index 0000000..b016ede
--- /dev/null
+++ b/game.h
@@ -0,0 +1,10 @@
+
+#include <stddef.h>
+#include <stdint.h>
+
+typedef struct decoded_image {
+ size_t width;
+ size_t height;
+ uint32_t *buf;
+ size_t buf_size;
+} decoded_image;