#pragma once #include #include struct ConstantVelocityBullet; void update(float dt, std::vector& bullets); struct ConstantVelocityBullet { Vector2 position; Vector2 velocity; };