This repository has been archived on 2024-03-29. You can view files and clone it, but cannot push or open issues or pull requests.
FreeSR/FreeSR.Proto/HeroBasicType.cs
2024-01-27 21:06:07 +08:00

23 lines
375 B
C#

namespace FreeSR.Proto
{
using ProtoBuf;
public enum HeroBasicType
{
None = 0,
BoyWarrior = 8001,
GirlWarrior = 8002,
BoyKnight = 8003,
GirlKnight = 8004,
BoyRogue = 8005,
GirlRogue = 8006,
BoyMage = 8007,
GirlMage = 8008,
BoyShaman = 8009,
GirlShaman = 8010,
BoyWarlock = 8011,
GirlWarlock = 8012,
BoyPriest = 8013,
GirlPriest = 8014,
}
}