muddesigner/Mud Designer/MudEngine/GameManagement/GameScript.cs
Scionwest_cp 4f5fd633ba Zone Builder:
- Doorways now show the Travel Direction the opposite doorway uses within the pop up tooltip.
 - Doorway tooltips now show the Connected Room information in the doors popup tooltip when loaded.

DoorwayManager:
 - Saves the connected rooms traveldirection within the Doorway now.

MudEngine:
 - Door.ConnectedRoom struct now contains a TravelDirection Field for finding out what travel direction a connected room uses to return back to the original room.
 - GameScript class added within the GameManagement namespace.
2009-12-29 17:06:10 -08:00

24 lines
524 B
C#

//.NET Framework
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//MudEngine
using MudDesigner.MudEngine.FileSystem;
using MudDesigner.MudEngine.GameManagement;
using MudDesigner.MudEngine.GameObjects;
//ManagedScripting
using ManagedScripting;
using ManagedScripting.CodeBuilding;
namespace MudDesigner.MudEngine.GameManagement
{
public class GameScript
{
ScriptObject _ScriptObject;
public GameScript()
{
}
}
}