Currency Editor:

* Program.cs - Removed test code.

Mud Designer:
 * Program.cs - Message box added informing developers why the editors wont launch if the source is not placed in the _InstallLocation.

Mud Engine:
 * Now includes a reference to the ManagedScripting assembly.
 * BaseObject.cs - Added ScriptObject property.

Visual Designer:
 * frmDesigner.cs - Removed File->Close test save code.
This commit is contained in:
Scionwest_cp 2009-11-24 16:10:36 -08:00
parent ef10e79a4c
commit 1bac98a47e
5 changed files with 41 additions and 5 deletions

View file

@ -45,10 +45,6 @@ namespace VisualDesigner
/// <param name="e"></param>
private void closeToolStripMenuItem_Click(object sender, EventArgs e)
{
foreach (ScriptObject obj in engine.GetObjects())
{
XmlSerialization.Save(obj.Name + ".xml", obj);
}
Application.Exit();
}