forked from SoDOff-Project/sodoff-mmo
12 lines
273 B
C#
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);
|
|
}
|