summaryrefslogtreecommitdiffhomepage
path: root/EnemyFactory.h
blob: 6134ae94cb9bf2d808fac1487acf67a9c26c3846 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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);
};