summaryrefslogtreecommitdiffhomepage
path: root/ExampleGenerator.h
diff options
context:
space:
mode:
Diffstat (limited to 'ExampleGenerator.h')
-rw-r--r--ExampleGenerator.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/ExampleGenerator.h b/ExampleGenerator.h
new file mode 100644
index 0000000..0e3372b
--- /dev/null
+++ b/ExampleGenerator.h
@@ -0,0 +1,21 @@
+#pragma once
+
+#include <vector>
+
+#include <raylib.h>
+
+#include "Bullets.h"
+
+
+struct ExampleGenerator
+{
+ ExampleGenerator();
+ void update(float dt, std::vector<ConstantVelocityBullet>& bullets);
+ float m_delay;
+ float m_interval;
+ float m_cone;
+ int m_speed;
+ int m_shift;
+ int m_segments;
+ Vector2 m_origin;
+};