feat: add armor item
This commit is contained in:
14
L2BotCore/Domain/Enums/ArmorType.h
Normal file
14
L2BotCore/Domain/Enums/ArmorType.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
namespace L2Bot::Domain::Enums
|
||||
{
|
||||
enum class ArmorType : uint8_t
|
||||
{
|
||||
none = 0,
|
||||
light,
|
||||
heavy,
|
||||
robe
|
||||
};
|
||||
}
|
17
L2BotCore/Domain/Enums/CrystalType.h
Normal file
17
L2BotCore/Domain/Enums/CrystalType.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
namespace L2Bot::Domain::Enums
|
||||
{
|
||||
enum class CrystalType : int8_t
|
||||
{
|
||||
none = -1,
|
||||
ng,
|
||||
d,
|
||||
c,
|
||||
b,
|
||||
a,
|
||||
s
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user