//------------------------------------------------------------ // Game Framework // Copyright © 2013-2021 Jiang Yin. All rights reserved. // Homepage: https://gameframework.cn/ // Feedback: mailto:ellan@gameframework.cn //------------------------------------------------------------ using ProtoBuf; using System; namespace MetaClient { [Serializable, ProtoContract(Name = @"CSHeartBeat")] public class CSHeartBeat : CSPacketBase { public CSHeartBeat() { } public override int Id { get { return 1; } } public override void Clear() { } } }