MudEngine:

- Changed Player[] array to a List<> Collection of PlayerBasics. This change is reflected across all Types.
 - Game now contains a Start() function. StartServer is now called from within here.
 - Game now has partial support for the Script Engine

MudGame:
 - Game.StartServer has changed to Game.Start(). StartServer is called within Start().
This commit is contained in:
Scionwest_cp 2010-07-24 10:33:27 -07:00
parent 0f87ac233a
commit dbe1e693e5
5 changed files with 52 additions and 16 deletions

View file

@ -97,7 +97,7 @@ namespace MudEngine.Scripting
Directory.Delete("temp", true);
Directory.CreateDirectory("temp");
string source = "namespace MUDScripts\n{\n}";
string source = "namespace MudScripts\n{\n}";
foreach (string script in scripts)
{
string tempPath = "temp";