muddesigner/MudGame/bin/Debug/Scripts/MyGame.cs
Scionwest_cp 9792bfcd32 MudEngine:
- Bug fixes with object saving and restoration
 - Game Deconstructor removed.
 - Player Password saving, restoring and varification implemented fully.

MudGame:
 - Revised scripts to demonstrate the latest environment creation updates.
2010-08-15 12:24:54 -07:00

19 lines
No EOL
468 B
C#

public class MyGame : Game
{
public California Cali;
public MyGame()
: base()
{
GameTitle = "Mud Designer Example Game";
IsMultiplayer = true;
CompanyName = "Mud Designer Team";
Website = "Visit Http://MudDesigner.Codeplex.com for the latest News, Documentation and Releases.";
Version = "Example Game Version 1.0";
MaximumPlayers = 5000;
Cali = new California(this);
Cali.Create();
}
}