* Began writing the code for player login support.

* Re-organized the StandardCharacter source code.
* StandardGame now implements DataPaths in its Constructor.
This commit is contained in:
Scionwest_cp 2012-03-03 13:53:56 -08:00
parent f0ec29c240
commit 40b0d2be79
5 changed files with 101 additions and 67 deletions

View file

@ -21,8 +21,13 @@ namespace MudEngine.DAL
public String Environments { get; set; }
/// <summary>
/// Path to the engines saved objects (Equipment etc).
/// Gets the Path to the Characters save directory
/// </summary>
public String Objects { get; set; }
public String Characters { get; set; }
/// <summary>
/// Gets the path to the saved players directory.
/// </summary>
public String Players { get; set; }
}
}