#pragma once #include #include #include "Bullets.h" struct ExampleGenerator { ExampleGenerator(); void update(float dt, std::vector& bullets); float m_delay; float m_interval; float m_cone; int m_speed; int m_shift; int m_segments; Vector2 m_origin; };