- 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.
24 lines
524 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|