Add project files.

This commit is contained in:
k0t9i
2023-01-16 15:33:32 +04:00
parent 0f6fb75cff
commit 3c20df7683
130 changed files with 7756 additions and 0 deletions

View File

@@ -0,0 +1,99 @@
#pragma once
#include <cstdint>
namespace L2Bot::Domain::Enums
{
enum class ClassEnum : uint8_t
{
none = 255,
humanFighter = 0,
warrior,
gladiator,
warlord,
humanKnight,
paladin,
darkAvenger,
rogue,
treasureHunter,
hawkeye,
humanMystic,
humanWizard,
sorceror,
necromancer,
warlock,
cleric,
bishop,
prophet,
elvenFighter,
elvenKnight,
templeKnight,
swordsinger,
elvenScout,
plainsWalker,
silverRanger,
elvenMystic,
elvenWizard,
spellsinger,
elementalSummoner,
elvenOracle,
elvenElder,
darkElvenFighter,
palusKnight,
shillienKnight,
bladedancer,
assassin,
abyssWalker,
phantomRanger,
darkElvenMystic,
darkElvenWizard,
spellhowler,
phantomSummoner,
shillienOracle,
shillienElder,
orcFighter,
orcRaider,
destroyer,
orcMonk,
tyrant,
orcMystic,
orcShaman,
overlord,
warcryer,
dwarvenFighter,
dwarvenScavenger,
bountyHunter,
dwarvenArtisan,
warsmith,
duelist = 88,
dreadnought,
phoenixKnight,
hellKnight,
sagittarius,
adventurer,
archmage,
soultaker,
arcanaLord,
cardinal,
hierophant,
evaTemplar,
swordMuse,
windRider,
moonlightSentinel,
mysticMuse,
elementalMaster,
evaSaint,
shillienTemplar,
spectralDancer,
ghostHunter,
ghostSentinel,
stormScreamer,
spectralMaster,
shillienSaint,
titan,
grandKhauatari,
dominator,
doomcryer,
fortuneSeeker,
maestro
};
}