This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
2015-05-08 21:56:08 +02:00

17 lines
449 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TrueCraft.API.Networking;
namespace TrueCraft.API.Server
{
public interface ICommand
{
string Name { get; }
string Description { get; }
string[] Aliases { get; }
void Handle(IRemoteClient client, string alias, string[] arguments);
void Help(IRemoteClient client, string alias, string[] arguments);
}
}