mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
37fe935a3a
Testsed to make sure they work Tested to make sure existing script works still killing it immedialtely is live accurate, the timer was not accurate
14 lines
380 B
C++
14 lines
380 B
C++
#ifndef __SPECIAL25SILVERCOINSPAWNER__H__
|
|
#define __SPECIAL25SILVERCOINSPAWNER__H__
|
|
|
|
#include "SpecialCoinSpawner.h"
|
|
|
|
class Special25SilverCoinSpawner : public SpecialCoinSpawner {
|
|
public:
|
|
Special25SilverCoinSpawner() : SpecialCoinSpawner(m_currencyDenomination) {};
|
|
private:
|
|
static const uint32_t m_currencyDenomination = 2500;
|
|
};
|
|
|
|
#endif //!__SPECIAL25SILVERCOINSPAWNER__H__
|