Changed private fields BaseCommands.realm and player to protected so that child classes can access them.
Added BaseCommands.zone and BaseCommands.room. Fixed all 766 errors doing this lol.
This commit is contained in:
parent
ace60cf54a
commit
d1c0ff188a
1 changed files with 5 additions and 3 deletions
|
@ -16,9 +16,11 @@ namespace MudEngine.Commands
|
|||
//public String Name { get; set; }
|
||||
public List<String> Help { get; set; }
|
||||
|
||||
private Realm realm;
|
||||
private BaseCharacter player;
|
||||
private Boolean isEditing;
|
||||
protected Realm realm;
|
||||
protected Zone zone;
|
||||
protected Room room;
|
||||
protected BaseCharacter player;
|
||||
protected Boolean isEditing;
|
||||
|
||||
public BaseCommand()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue