* 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.
33 lines
606 B
C#
33 lines
606 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
using System.ComponentModel;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MUDEngine.Objects
|
|
{
|
|
public class BaseObject
|
|
{
|
|
[Category("Object Setup")]
|
|
public string Name
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[Category("Object Setup")]
|
|
public string Description
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public ManagedScripting.ScriptObject Script
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|