SCHeartBeat.cs 686 B

123456789101112131415161718192021222324252627282930313233
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 Jiang Yin. All rights reserved.
  4. // Homepage: https://gameframework.cn/
  5. // Feedback: mailto:ellan@gameframework.cn
  6. //------------------------------------------------------------
  7. using ProtoBuf;
  8. using System;
  9. namespace MetaClient
  10. {
  11. [Serializable, ProtoContract(Name = @"SCHeartBeat")]
  12. public class SCHeartBeat : SCPacketBase
  13. {
  14. public SCHeartBeat()
  15. {
  16. }
  17. public override int Id
  18. {
  19. get
  20. {
  21. return 2;
  22. }
  23. }
  24. public override void Clear()
  25. {
  26. }
  27. }
  28. }