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