Files
AIC-Project/Server/Gateway/ServerCommand.cs
T
2026-07-10 10:24:29 +08:00

13 lines
410 B
C#

using XWorld.Framework.Protocol;
namespace XWorld.Server.Gateway
{
public abstract class ServerCommand { public int PlayerId; }
public sealed class ConnectCommand : ServerCommand { public IClientConnection Connection; }
public sealed class DisconnectCommand : ServerCommand { public IClientConnection Connection; }
public sealed class FrameCommand : ServerCommand { public Frame Frame; }
}