BITKit/Src/Core/Net/Commands/NetClientPing.cs

11 lines
140 B
C#
Raw Normal View History

2025-01-24 10:36:58 +08:00
using MemoryPack;
2023-08-23 01:59:26 +08:00
namespace BITKit.Net.Examples
{
2025-01-24 10:36:58 +08:00
[MemoryPackable]
public partial struct NetClientPingCommand
2023-08-23 01:59:26 +08:00
{
public int Ping;
}
}