mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
[+] Network Module
[+] Network Module
This commit is contained in:
19
Assets/GameScripts/HotFix/GameLogic/Network/HeartBeat.cs
Normal file
19
Assets/GameScripts/HotFix/GameLogic/Network/HeartBeat.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user