#pragma once #include "ConstantVelocity.h" #include "Enemy.h" struct EnemyFactory { static Enemy make_example(ConstantVelocityBullet::Vector& bullets, float x, float y, float hold, bool mirror=false); static Enemy make_waver(ConstantVelocityBullet::Vector& bullets, float x, float y, float hold); };