19 lines
310 B
C#
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
|
|
}
|
|
}
|