Added beginning support for Dynamic Type Property Saving. Refer to my blog post for additional information in this: http://scionwest.net/2011/09/saving-type-data-dynamically/

Added new ParseProperty Attribute that must be used on any Type Property that will need to be saved during runtime.
This commit is contained in:
Scionwest_cp 2011-09-13 20:20:12 -07:00
parent f8620d0f4d
commit 81f2ae91c0
6 changed files with 537 additions and 471 deletions

View file

@ -139,8 +139,8 @@ namespace MudEngine.Scripting
public Boolean Compile(CompilerParameters param, FileInfo scriptFile)
{
//TODO: Add single-file compilation support
return false; //Single file compiling not implemented
return false; //Single file compiling not implemented. TODO!
//Make sure we have a compiler version supplied.
if (!CompilerOptions.ContainsKey("CompilerVersion"))
CompilerOptions.Add("CompilerVersion", "v4.0");