Deleted Networking folder.
Deleted ParseProperty Attribute. A different approach will be used for dynamic Type saving. Removed BaseObject.NewSave(). The re-write on save code will be done at a later date.
This commit is contained in:
parent
373b8b66b8
commit
c432edbef9
5 changed files with 1 additions and 65 deletions
32
MudEngine/Core/BaseCommand.cs
Normal file
32
MudEngine/Core/BaseCommand.cs
Normal file
|
@ -0,0 +1,32 @@
|
|||
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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue