mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
19 lines
307 B
C#
19 lines
307 B
C#
using System;
|
|
using ProtoBuf;
|
|
|
|
namespace GameLogic
|
|
{
|
|
[Serializable, ProtoContract(Name = @"HeartBeat")]
|
|
public class HeartBeat : PacketBase
|
|
{
|
|
public HeartBeat()
|
|
{
|
|
}
|
|
|
|
public override int Id => 1;
|
|
|
|
public override void Clear()
|
|
{
|
|
}
|
|
}
|
|
} |