12 lines
171 B
C#
12 lines
171 B
C#
namespace FreeSR.Proto
|
|
{
|
|
using ProtoBuf;
|
|
|
|
[ProtoContract]
|
|
public class HealthBarInfo
|
|
{
|
|
[ProtoMember(1)] public int CurHp;
|
|
[ProtoMember(2)] public int MaxHp;
|
|
}
|
|
|
|
}
|