summaryrefslogtreecommitdiffhomepage
path: root/WaveGenerator.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-25 01:49:48 +0200
committerAki <please@ignore.pl>2022-04-25 01:49:48 +0200
commitc1c7fb82aed0c403865896a941388a9e2cc486d0 (patch)
tree7407e44a90d394bd285d5a02841188ed219a3267 /WaveGenerator.h
parent63c64254a80564e11987ba4af289cf8d47774668 (diff)
downloadbullethell2022-c1c7fb82aed0c403865896a941388a9e2cc486d0.zip
bullethell2022-c1c7fb82aed0c403865896a941388a9e2cc486d0.tar.gz
bullethell2022-c1c7fb82aed0c403865896a941388a9e2cc486d0.tar.bz2
Extended test staged with new enemies
Diffstat (limited to 'WaveGenerator.h')
-rw-r--r--WaveGenerator.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/WaveGenerator.h b/WaveGenerator.h
deleted file mode 100644
index c3d52f5..0000000
--- a/WaveGenerator.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#pragma once
-
-#include <memory>
-
-#include <raylib.h>
-
-#include "ConstantVelocity.h"
-#include "Generator.h"
-
-
-class WaveGenerator : public Generator
-{
-public:
- friend class EnemyFactory;
- WaveGenerator(std::shared_ptr<Vector2> position, ConstantVelocityBullet::Vector& bullets);
- void update(float dt) override;
-private:
- std::shared_ptr<Vector2> m_position;
- ConstantVelocityBullet::Vector& m_bullets;
- float m_delay;
- float m_interval;
- int m_speed;
- int m_shift;
- int m_segments;
- Color m_color;
-};