XMLData class added. This will manage the saving and loading of all scripted objects during runtime. The saved files will be XML formatted.
Added rScript files to the engine. These have not been implemented and currently don't work with the engine. BaseScript has been modified to support the new XMLData class for saving data.
This commit is contained in:
parent
fc27d9fc22
commit
38bdf75bf1
16 changed files with 1174 additions and 25 deletions
|
@ -19,7 +19,9 @@ namespace MudEngine.Core.Interfaces
|
|||
/// Save method for dumping the object to physical file.
|
||||
/// </summary>
|
||||
/// <param name="path"></param>
|
||||
void Save(String path);
|
||||
Boolean Save(String filename);
|
||||
|
||||
Boolean Save(String filename, Boolean ignoreignoreFileWrite);
|
||||
|
||||
/// <summary>
|
||||
/// Load method for retrieving saved data from file.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue