diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-12-28 19:34:07 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-12-28 19:34:07 +0100 |
commit | 9afadbd2b2d2c5ec730154a426e83722e4c3da32 (patch) | |
tree | 8f986a805101f9387d1b3c4ebfa42573cd924df3 /game/coins/CoinPool.h | |
parent | fb096afbdf3d24f5b9f31626ddf8581033346f88 (diff) |
renamed file
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; +}; + |