muddesigner/MudEngine/Attributes/ParseProperty.cs
Scionwest_cp 81f2ae91c0 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.
2011-09-13 20:20:12 -07:00

23 lines
No EOL
444 B
C#

using System;
using System.Reflection;
using System.ComponentModel;
namespace MudEngine.Attributes
{
[System.AttributeUsage(System.AttributeTargets.Property)]
public class ParseProperty
: System.Attribute
{
Object obj;
public ParseProperty(Object var)
{
obj = var;
}
public object GetObject()
{
return obj;
}
}
}