33 lines
683 B
C#
33 lines
683 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 Network
|
|
{
|
|
[Serializable, ProtoContract(Name = @"CSHeartBeat")]
|
|
public class CSHeartBeat : CSPacketBase
|
|
{
|
|
public CSHeartBeat()
|
|
{
|
|
}
|
|
|
|
public override int Id
|
|
{
|
|
get
|
|
{
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
public override void Clear()
|
|
{
|
|
}
|
|
}
|
|
}
|