summaryrefslogtreecommitdiffhomepage
path: root/GameScreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'GameScreen.h')
-rw-r--r--GameScreen.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/GameScreen.h b/GameScreen.h
index 47a80d1..3555a6f 100644
--- a/GameScreen.h
+++ b/GameScreen.h
@@ -2,6 +2,7 @@
#include <raylib.h>
+#include "Bullets.h"
#include "Screen.h"
@@ -12,5 +13,8 @@ public:
void update(float dt) override;
void draw() override;
private:
+ static constexpr float TEST_INTERVAL {0.24f};
+ float m_delay;
Vector2 m_pos;
+ std::vector<ConstantVelocityBullet> m_const_bullets;
};