mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
15 lines
304 B
C
15 lines
304 B
C
|
#ifndef __GEMPACK__H__
|
||
|
#define __GEMPACK__H__
|
||
|
|
||
|
#include "CoilBackpackBase.h"
|
||
|
|
||
|
class GemPack : public CoilBackpackBase {
|
||
|
public:
|
||
|
GemPack() : CoilBackpackBase(skillId, behaviorId) {};
|
||
|
private:
|
||
|
static const uint32_t skillId = 1488;
|
||
|
static const uint32_t behaviorId = 36779;
|
||
|
};
|
||
|
|
||
|
#endif //!__GEMPACK__H__
|