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.
Daniel Vidmar 1d48d01648 New Command System
- Added a new command system
- Added a help command
- Added a command event
2015-01-23 04:03:28 -05: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);
}
}