forked from Moux23333/FreeSR
15 lines
296 B
C#
15 lines
296 B
C#
|
namespace FreeSR.Proto
|
||
|
{
|
||
|
using ProtoBuf;
|
||
|
|
||
|
[ProtoContract]
|
||
|
public class GetCurBattleInfoScRsp
|
||
|
{
|
||
|
[ProtoMember(7)] public BattleEndStatus LastEndStatus;
|
||
|
[ProtoMember(11)] public SceneBattleInfo BattleInfo;
|
||
|
[ProtoMember(4)] public int Retcode;
|
||
|
[ProtoMember(10)] public int StageId;
|
||
|
}
|
||
|
|
||
|
}
|