18 lines
406 B
C#
18 lines
406 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
using MudEngine.Game.Characters;
|
|
|
|
namespace MudEngine.Core.Interface
|
|
{
|
|
public interface ICommand
|
|
{
|
|
string Name { get; set; }
|
|
string Description { get; set; }
|
|
List<string> Help { get; set; }
|
|
|
|
void Execute(string command, StandardCharacter character);
|
|
}
|
|
}
|