L2Bot2.0/Client/Domain/Enums/RaceEnum.cs
2023-01-28 14:54:49 +04:00

19 lines
310 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Client.Domain.Enums
{
public enum RaceEnum : uint
{
None = 255,
DarkElf = 2,
Dwarf = 4,
Elf = 1,
Human = 0,
Orc = 3
}
}