Files
FreeSR/FreeSR.Proto/HeroBasicTypeInfo.cs
2024-01-27 21:06:07 +08:00

14 lines
254 B
C#

namespace FreeSR.Proto
{
using ProtoBuf;
[ProtoContract]
public class HeroBasicTypeInfo
{
[ProtoMember(10)] public HeroBasicType BasicType;
[ProtoMember(15)] public List<AvatarSkillTree> SkillTreeList;
[ProtoMember(14)] public int Rank;
}
}