1d48d01648
- Added a new command system - Added a help command - Added a command event
15 lines
332 B
C#
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);
|
|
}
|
|
}
|