diff options
Diffstat (limited to 'src/Game.h')
-rw-r--r-- | src/Game.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/Game.h b/src/Game.h index f290f34..7e27345 100644 --- a/src/Game.h +++ b/src/Game.h @@ -194,11 +194,12 @@ typedef struct Game Game; extern "C" { #endif // __cplusplus Game* makeGame(struct Config config); - void initGl(Game*); - void initGame(Game*); - void keyCallback(Game*, int key, int action, int mods); - void eventLoop(Game*); - void closeGame(Game*); + void resizeWindow(Game* game, int width, int height); + void handleKey(Game* game, int key, int action, int mods); + void initGl(Game* game); + void initGame(Game* game); + void eventLoop(Game* game); + void closeGame(Game* game); #ifdef __cplusplus } // extern "C" #endif // __cplusplus |