aboutsummaryrefslogtreecommitdiff
path: root/game/enemy/EnemyBulletPool.cpp
blob: 6ebd50ac48eab5eec98c8889c3f089bf6cee6b77 (plain)
1
2
3
4
5
6
7
8
#include "EnemyBulletSubScene.h"
#include "EnemyBulletPool.h"
using namespace std;

void EnemyBulletPool::create_bullets(crepe::Scene & scn) {
	EnemyBulletSubScene bullet;
	while(bullet.create(scn) < this->MAXIMUM_AMOUNT);
}