aboutsummaryrefslogtreecommitdiff
path: root/game/coins/CoinPool.h
blob: 83058f7f4320df035ee9b2a23a8e804dc0aabeb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "api/Scene.h"


class CoinPool {
public:
	void create_coins(crepe::Scene & scn);
private:
	static constexpr int MAXIMUM_AMOUNT = 100;
};