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

@ -40,9 +40,8 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="rScripting, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\rScript\rScripting\bin\Release\rScripting.dll</HintPath>
<Reference Include="rScripting">
<HintPath>..\..\rScripting\rScripting\bin\Release\rScripting.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
@ -58,6 +57,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Attributes\ParseProperty.cs" />
<Compile Include="Commands\CommandRestart.cs" />
<Compile Include="Commands\CommandLogin.cs" />
<Compile Include="Commands\CommandSaveWorld.cs" />