We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
int
size_t
1 parent d76611d commit 26b9323Copy full SHA for 26b9323
src/game.hpp
@@ -4,6 +4,7 @@
4
#include <le2d/event.hpp>
5
#include <le2d/renderer.hpp>
6
#include <le2d/service_locator.hpp>
7
+#include <cstddef>
8
#include "enemy.hpp"
9
#include "lighhouse.hpp"
10
@@ -23,7 +24,7 @@ class Game {
23
24
le::drawable::Circle m_circle{};
25
Lighthouse m_lighthouse;
26
glm::vec2 m_cursor_pos{};
- int m_wave_count{};
27
+ std::size_t m_wave_count{};
28
bool m_running{true};
29
kvf::Seconds m_wave_interval{};
30
kvf::Seconds m_time_since_last_wave_spawn{};
0 commit comments