mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
14 lines
342 B
C
14 lines
342 B
C
|
#ifndef __SPECIALLIFEPOWERUPSPAWNER__H__
|
||
|
#define __SPECIALLIFEPOWERUPSPAWNER__H__
|
||
|
|
||
|
#include "SpecialPowerupSpawner.h"
|
||
|
|
||
|
class SpecialLifePowerupSpawner : public SpecialPowerupSpawner {
|
||
|
public:
|
||
|
SpecialLifePowerupSpawner() : SpecialPowerupSpawner(m_SkillId) {};
|
||
|
private:
|
||
|
uint32_t m_SkillId = 5;
|
||
|
};
|
||
|
|
||
|
#endif //!__SPECIALLIFEPOWERUPSPAWNER__H__
|