Initial commit of isometric Game Boy adventure prototype

This commit is contained in:
2026-06-20 16:30:15 +02:00
commit 20a5d8604b
17 changed files with 927 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef ENGINE_H
#define ENGINE_H
#include <stdint.h>
void engine_init(void);
void engine_update(uint8_t keys, uint8_t prev_keys);
#endif