Migrated remaining source files into their new directory structures. Namespace migration to follow suit.
Moved rScript source files into the Mud Engine.Scripting files. Planning on removing the reference to rScript.dll and keep everything within the MudEngine.
This commit is contained in:
parent
c432edbef9
commit
a00f60d22b
19 changed files with 651 additions and 20 deletions
|
@ -1,34 +0,0 @@
|
|||
using System;
|
||||
|
||||
//MUD Engine
|
||||
using MudEngine.FileSystem;
|
||||
using MudEngine.GameObjects;
|
||||
using MudEngine.GameObjects.Environment;
|
||||
|
||||
namespace MudEngine.GameObjects.Environment
|
||||
{
|
||||
public struct StartingLocation
|
||||
{
|
||||
public String Room;
|
||||
public String Zone;
|
||||
public String Realm;
|
||||
|
||||
public override String ToString()
|
||||
{
|
||||
if (String.IsNullOrEmpty(Room))
|
||||
return "No initial location defined.";
|
||||
else
|
||||
{
|
||||
if (Realm == "No Realm Associated.")
|
||||
{
|
||||
return Zone + "->" + Room;
|
||||
}
|
||||
else
|
||||
{
|
||||
return Realm + "->" + Zone + "->" + Room;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue