Created new namespace folders for current engine overhaul

Moved ParseProperty into MudEngine.Core
This commit is contained in:
Scionwest_cp 2011-09-27 17:27:37 -07:00
parent a1cc6c41a4
commit 98e01dfd98
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,23 @@
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;
}
}
}