feat: add resurrection

This commit is contained in:
Иванов Иван
2024-08-12 18:20:55 +02:00
parent c3f6d10dc6
commit c61019961b
13 changed files with 94 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include <cstdint>
namespace L2Bot::Domain::Enums
{
enum class RestartPointTypeEnum : uint8_t
{
village = 0,
clanhall,
castle,
siege,
festival,
jail = 27
};
}