feat: add weapon and shield items

This commit is contained in:
k0t9i
2023-01-24 18:37:47 +04:00
parent 2b94f823f2
commit ca0183603f
11 changed files with 487 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include <cstdint>
namespace L2Bot::Domain::Enums
{
enum class ItemType : int8_t
{
none = -1,
etc,
armor,
weapon,
shield
};
}

View File

@@ -0,0 +1,21 @@
#pragma once
#include <cstdint>
namespace L2Bot::Domain::Enums
{
enum class WeaponType : uint8_t
{
none = 0,
sword,
blunt,
dagger,
pole,
fist,
bow,
etc,
dualsword,
pet,
fishingRod
};
}