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
15 lines
349 B
C++
15 lines
349 B
C++
#ifndef __SPECIALARMORPOWERUPSPAWNER__H__
|
|
#define __SPECIALARMORPOWERUPSPAWNER__H__
|
|
|
|
#include "SpecialPowerupSpawner.h"
|
|
|
|
class SpecialArmorPowerupSpawner : public SpecialPowerupSpawner {
|
|
public:
|
|
SpecialArmorPowerupSpawner() : SpecialPowerupSpawner(m_SkillId) {};
|
|
private:
|
|
uint32_t m_SkillId = 80;
|
|
};
|
|
|
|
|
|
#endif //!__SPECIALARMORPOWERUPSPAWNER__H__
|