mirror of
https://git.neonteam.dev/amizing/FreeSR.git
synced 2025-03-12 03:36:21 -04:00
15 lines
284 B
C#
15 lines
284 B
C#
namespace FreeSR.Proto
|
|
{
|
|
using ProtoBuf;
|
|
|
|
[ProtoContract]
|
|
public class CHPNMFBCGPL
|
|
{
|
|
//[ProtoMember(4)] public HealthBarInfo CurHealth;
|
|
[ProtoMember(4)] public int Id;
|
|
[ProtoMember(12)] public int Hp;
|
|
[ProtoMember(9)] public AvatarType AvatarType;
|
|
}
|
|
|
|
}
|