blob: 63ef346e2e6b7552ac32c4578722c75e4b4d77a8 (
plain)
1
2
3
4
5
6
7
8
|
#include "PlayerBulletSubScene.h"
#include "PlayerBulletPool.h"
using namespace std;
void PlayerBulletPool::create_bullets(crepe::Scene & scn) {
PlayerBulletSubScene bullet;
while(bullet.create(scn) < this->MAXIMUM_AMOUNT);
}
|