jsgr-mmo/src/Management/IManagementCommand.cs
2024-04-07 15:42:28 +02:00

12 lines
273 B
C#

using sodoffmmo.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace sodoffmmo.Management;
public interface IManagementCommand {
public void Handle(Client client, string[] arguments);
}