Removed old engine classes. Needs to be done prior to checking-in the new engine classes re-wrote from ground up.

This commit is contained in:
Scionwest_cp 2011-10-01 22:09:33 -07:00
parent 5a39a7995e
commit 5be2f9bf5b
39 changed files with 201 additions and 3300 deletions

View file

@ -1,32 +0,0 @@
using System;
using System.Collections.Generic;
using MudEngine.GameManagement;
using MudEngine.GameObjects.Characters;
using MudEngine.GameObjects.Environment;
namespace MudEngine.Commands
{
public abstract class BaseCommand : IGameCommand
{
public Boolean Override { get; set; }
public String Name { get; set; }
//public String Name { get; set; }
public List<String> Help { get; set; }
protected Realm realm;
protected Zone zone;
protected Room room;
protected BaseCharacter player;
protected Boolean isEditing;
public BaseCommand()
{
Help = new List<string>();
}
public abstract void Execute(String command, BaseCharacter player);
}
}