TrueCraft/TrueCraft.API/Server/ICommandManager.cs
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

15 lines
332 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TrueCraft.API.Networking;
namespace TrueCraft.API.Server
{
public interface ICommandManager
{
IList<ICommand> Commands { get; }
void HandleCommand(IRemoteClient Client, string Alias, string[] Arguments);
}
}