diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-03 01:09:04 -0700 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-03 01:09:04 -0700 |
commit | 8bd37d4fe75a43deab8d6f24b481c23d7f965c5a (patch) | |
tree | 3a606dae6993778919e2ce94c6216d2f8f74d1b2 /src/levels/level3.h | |
parent | a8e21e0ac702fc7bcdcaf144f384cbce8aae03d0 (diff) |
More and more level stuff
Diffstat (limited to 'src/levels/level3.h')
-rw-r--r-- | src/levels/level3.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/levels/level3.h b/src/levels/level3.h index 85501a6..329627a 100644 --- a/src/levels/level3.h +++ b/src/levels/level3.h @@ -4,6 +4,10 @@ #ifndef LEVEL3_H #define LEVEL3_H +typedef struct Level3 { + int stage; +} Level3; + void initLevel3(Game * game, Levels * levels); void closelevel3(Levels * levels); bool updateLevel3(Game * game, Levels * levels); |