forked from Moux23333/FreeSR
14 lines
212 B
C#
14 lines
212 B
C#
|
namespace FreeSR.Proto
|
||
|
{
|
||
|
using ProtoBuf;
|
||
|
|
||
|
[ProtoContract]
|
||
|
public class BattleMonster
|
||
|
{
|
||
|
[ProtoMember(1)] public int MonsterId;
|
||
|
[ProtoMember(2)] public int CurHp;
|
||
|
[ProtoMember(3)] public int MaxHp;
|
||
|
}
|
||
|
|
||
|
}
|