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 = @"SCHeartBeat")]
- public class SCHeartBeat : SCPacketBase
- {
- public SCHeartBeat()
- {
- }
- public override int Id
- {
- get
- {
- return 2;
- }
- }
- public override void Clear()
- {
- }
- }
- }
|