diff --git a/MudEngine/WinPC_Engine/Core/BaseCommand.cs b/MudEngine/WinPC_Engine/Core/BaseCommand.cs deleted file mode 100644 index c60dee5..0000000 --- a/MudEngine/WinPC_Engine/Core/BaseCommand.cs +++ /dev/null @@ -1,47 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Linq; -using System.Text; - -using MudEngine.Game.Characters; -using MudEngine.Core.Interface; - -namespace MudEngine.Core -{ - public abstract class BaseCommand : ICommand - { - /// - /// Gets or Sets a collection of help topics related to this command. - /// - [Browsable(false)] - public List Help { get; set; } - - public BaseCommand() - { - Help = new List(); - this.Name = this.GetType().Name.Substring("Command".Length); - } - - /// - /// Executes the command for the character supplied. - /// - /// - /// - public abstract void Execute(string command, StandardCharacter character); - - public string Name {get;set;} - - public string Description - { - get - { - throw new NotImplementedException(); - } - set - { - throw new NotImplementedException(); - } - } - } -} diff --git a/MudEngine/WinPC_Engine/WinPC_Engine.csproj b/MudEngine/WinPC_Engine/WinPC_Engine.csproj index 5b9e4a7..a389644 100644 --- a/MudEngine/WinPC_Engine/WinPC_Engine.csproj +++ b/MudEngine/WinPC_Engine/WinPC_Engine.csproj @@ -44,7 +44,6 @@ -