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

@ -22,3 +22,17 @@ namespace CurrencyEditor
}
}
}
namespace Project2
{
public class MyClass
{
public string DoSomething(string argument1, string argument2)
{
if (!argument1.Equals(argument2))
return "The two arguments are different";
else
return "The two arguments are the same";
}
}
}