123456789101112131415161718192021222324252627282930313233 |
- //------------------------------------------------------------
- // 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()
- {
- }
- }
- }
|