diff options
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game.h b/src/game.h index 200b691..f0385ee 100644 --- a/src/game.h +++ b/src/game.h | |||
@@ -6,6 +6,7 @@ | |||
6 | #include <random> | 6 | #include <random> |
7 | #include <list> | 7 | #include <list> |
8 | #include "map.h" | 8 | #include "map.h" |
9 | #include "muxer.h" | ||
9 | 10 | ||
10 | const int GAME_WIDTH = 640*2; | 11 | const int GAME_WIDTH = 640*2; |
11 | const int GAME_HEIGHT = 480*2; | 12 | const int GAME_HEIGHT = 480*2; |
@@ -80,6 +81,7 @@ public: | |||
80 | } | 81 | } |
81 | 82 | ||
82 | std::mt19937& rng; | 83 | std::mt19937& rng; |
84 | Muxer muxer; | ||
83 | 85 | ||
84 | Map<MapData> map; | 86 | Map<MapData> map; |
85 | std::list<Kickup> kickups; | 87 | std::list<Kickup> kickups; |