summaryrefslogtreecommitdiff
path: root/game.h
diff options
context:
space:
mode:
authororangerot <orangerot@orangerot.dev>2025-10-14 04:11:36 +0200
committerorangerot <orangerot@orangerot.dev>2025-10-14 04:11:36 +0200
commitbc34748107f1ed8608f5a665f34577764cc65bbb (patch)
treebee688a2c1d0f97591d28671c60f65760c939024 /game.h
parentaa2be58cd30d5b9f1eb274454a9cca7a9739d62d (diff)
feat: mouse support
Diffstat (limited to 'game.h')
-rw-r--r--game.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/game.h b/game.h
index b016ede..d24d2d7 100644
--- a/game.h
+++ b/game.h
@@ -2,9 +2,15 @@
#include <stddef.h>
#include <stdint.h>
+#ifndef GAME_H
+#define GAME_H
+
typedef struct decoded_image {
size_t width;
size_t height;
uint32_t *buf;
size_t buf_size;
} decoded_image;
+
+#endif // GAME_H
+