Test Designer:

- Now allows for saving and loading of ProjectInformation and Currencies.
 - Realm Explorer control created for future Visual World system.
This commit is contained in:
Scionwest_cp 2010-01-07 19:43:16 -08:00
parent 6227b3f690
commit 60aa7d8c33
5 changed files with 173 additions and 28 deletions

View file

@ -24,7 +24,7 @@ namespace MudDesigner.MudEngine.GameObjects
set
{
this._Name = value;
this.Filename = value + "." + this.GetType().Name.ToLower();
this.Filename = value + ".xml";
}
}
@ -50,7 +50,7 @@ namespace MudDesigner.MudEngine.GameObjects
}
set
{
string extension = "." + this.GetType().Name.ToLower();
string extension = ".xml";
if (!value.EndsWith(extension))
value += extension;
@ -91,7 +91,7 @@ namespace MudDesigner.MudEngine.GameObjects
{
Script = "";
_Name = "New " + this.GetType().Name;
_Filename = _Name + "." + this.GetType().Name.ToLower();
_Filename = _Name + ".xml";
this.Feel = "You feel nothing.";
this.Listen = "You hear nothing of interest.";