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

17 lines
341 B
C#

namespace FreeSR.Proto
{
using ProtoBuf;
[ProtoContract]
public class LineupAvatar
{
[ProtoMember(2)] public HealthBarInfo CurHealth;
[ProtoMember(10)] public int Id;
[ProtoMember(7)] public int Slot;
[ProtoMember(8)] public AvatarType AvatarType;
[ProtoMember(9)] public int Sp;
[ProtoMember(13)] public int Satiety;
}
}