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