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

14 lines
213 B
C#

namespace FreeSR.Proto
{
using ProtoBuf;
[ProtoContract]
public class SceneMonster
{
[ProtoMember(6)] public int MaxHp;
[ProtoMember(12)] public int CurHp;
[ProtoMember(15)] public int MonsterId;
}
}