33 lines
686 B
C#
33 lines
686 B
C#
//------------------------------------------------------------
|
|
// Game Framework
|
|
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
|
|
// Homepage: https://gameframework.cn/
|
|
// Feedback: mailto:ellan@gameframework.cn
|
|
//------------------------------------------------------------
|
|
|
|
using ProtoBuf;
|
|
using System;
|
|
|
|
namespace GeometryTD
|
|
{
|
|
[Serializable, ProtoContract(Name = @"SCHeartBeat")]
|
|
public class SCHeartBeat : SCPacketBase
|
|
{
|
|
public SCHeartBeat()
|
|
{
|
|
}
|
|
|
|
public override int Id
|
|
{
|
|
get
|
|
{
|
|
return 2;
|
|
}
|
|
}
|
|
|
|
public override void Clear()
|
|
{
|
|
}
|
|
}
|
|
}
|