diff options
Diffstat (limited to 'game/coins/CoinPool.h')
-rw-r--r-- | game/coins/CoinPool.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/game/coins/CoinPool.h b/game/coins/CoinPool.h new file mode 100644 index 0000000..83058f7 --- /dev/null +++ b/game/coins/CoinPool.h @@ -0,0 +1,12 @@ +#pragma once + +#include "api/Scene.h" + + +class CoinPool { +public: + void create_coins(crepe::Scene & scn); +private: + static constexpr int MAXIMUM_AMOUNT = 100; +}; + |