mirror of
https://git.neonteam.dev/amizing/FreeSR.git
synced 2025-03-12 03:36:21 -04:00
17 lines
341 B
C#
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;
|
|
}
|
|
|
|
}
|