using System.Net.Sockets; using DX86; namespace Server.Commands; public interface ICommand { string Executor { get; } public void Exec(string[] args, TcpClient? client = null, TcpServer? clientSocket = null); }