initial scaffold structure

This commit is contained in:
2026-04-06 13:48:06 -04:00
parent a0a27a665e
commit 36d7da19d1
13 changed files with 641 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef GAME_H
#define GAME_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
uint8_t game_init(void);
void game_shutdown(void);
void game_tick(void);
#ifdef __cplusplus
}
#endif
#endif /* GAME_H */