muddesigner/MUDEngine/Objects/BaseObject.cs
Scionwest_cp 1bac98a47e 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.
2009-11-24 16:10:36 -08:00

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;
}
}
}