diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-24 17:53:46 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-26 21:51:47 +0200 |
| commit | c401b7663d0854a7a3f5c35b6809faf65dc1fd66 (patch) | |
| tree | 68e2f9af0115bc48fcc34ba41ceb1461bccf5f1d /src/game/inc | |
| parent | 70bc98f96c3e4ae7a45ff095c5f539711aaf7fb1 (diff) | |
| download | rts-c401b7663d0854a7a3f5c35b6809faf65dc1fd66.tar.gz | |
Implement main menu
Diffstat (limited to 'src/game/inc')
| -rw-r--r-- | src/game/inc/game.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/game/inc/game.h b/src/game/inc/game.h index 8275d54..5298b9f 100644 --- a/src/game/inc/game.h +++ b/src/game/inc/game.h @@ -1,12 +1,20 @@ #ifndef GAME_H #define GAME_H +#include <stddef.h> + #ifdef __cplusplus extern "C" { #endif -int game(void); +struct game_cfg +{ +}; + +int game_resinit(void); +int game(const struct game_cfg *cfg); +void game_free(void); #ifdef __cplusplus } |
