blob: f8b5b70dc0c69c421c5e4b053139ed13aaf8167e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "CoinPoolSubScene.h"
#include "CoinSubScene.h"
using namespace crepe;
using namespace std;
void CoinPoolSubScene::create_coins(crepe::Scene & scn) {
int amount = 0;
CoinSubScene coin;
while (amount < this->MAXIMUM_AMOUNT) {
amount = coin.create(scn, amount);
}
}
|