muddesigner/MudEngine/Core/ParseProperty.cs
Scionwest_cp 98e01dfd98 Created new namespace folders for current engine overhaul
Moved ParseProperty into MudEngine.Core
2011-09-27 17:27:37 -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;
}
}
}