mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 06:27:24 +00:00
9655f0ee45
fix compile issues
14 lines
234 B
C++
14 lines
234 B
C++
#ifndef GEMPACK_H
|
|
#define GEMPACK_H
|
|
|
|
#include "CoilBackpackBase.h"
|
|
|
|
class GemPack : public CoilBackpackBase {
|
|
public:
|
|
GemPack() : CoilBackpackBase(skillId) {};
|
|
private:
|
|
static const uint32_t skillId = 1488;
|
|
};
|
|
|
|
#endif //!GEMPACK_H
|