mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
16 lines
269 B
C#
16 lines
269 B
C#
namespace GameLogic
|
|
{
|
|
/// <summary>
|
|
/// 网络消息包。
|
|
/// </summary>
|
|
public partial class ProtoPacket : PacketBase
|
|
{
|
|
public override int Id => 1;
|
|
|
|
public override void Clear()
|
|
{
|
|
Close();
|
|
}
|
|
}
|
|
}
|