forked from Moux23333/FreeSR
13 lines
213 B
C#
13 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;
|
|
}
|
|
|
|
}
|