diff options
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game.h b/src/game.h index 637a033..c75d43b 100644 --- a/src/game.h +++ b/src/game.h | |||
@@ -71,7 +71,7 @@ public: | |||
71 | bool dirtyRender = true; | 71 | bool dirtyRender = true; |
72 | size_t numLamps = 0; | 72 | size_t numLamps = 0; |
73 | size_t numDust = 0; | 73 | size_t numDust = 0; |
74 | std::vector<MapData> mapDoubleBuffer; | 74 | std::vector<Tile> mapDoubleBuffer; |
75 | 75 | ||
76 | int player_x = 0; | 76 | int player_x = 0; |
77 | int player_y = 0; | 77 | int player_y = 0; |
@@ -111,6 +111,8 @@ public: | |||
111 | 111 | ||
112 | private: | 112 | private: |
113 | 113 | ||
114 | void tickDirty(bool onlyDark); | ||
115 | |||
114 | void tick( | 116 | void tick( |
115 | int x1, | 117 | int x1, |
116 | int y1, | 118 | int y1, |