SnapixLP | Tim G. c214be937c Initial Commit
2025-05-19 09:16:34 +02:00

10 lines
223 B
C#

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);
}