diff options
Diffstat (limited to 'src/Game.h')
-rw-r--r-- | src/Game.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Game.h b/src/Game.h index 5a0d831..363f4f6 100644 --- a/src/Game.h +++ b/src/Game.h @@ -109,6 +109,7 @@ struct Game { GLuint deadpersonspritetextureptr; GLuint scopetextureptr; GLuint flaretextureptr; + void *decals; bool gameinprogress; bool beatgame; @@ -136,7 +137,7 @@ typedef struct Game Game; #ifdef __cplusplus extern "C" { #endif // __cplusplus - Game* makeGame(struct Config config, struct Scores scores); + Game* makeGame(void *decals, struct Config config, struct Scores scores); void initGl(Game* game); void initGame(Game* game); void resizeWindow(Game* game, int width, int height); |