Created new namespace folders for current engine overhaul
Moved ParseProperty into MudEngine.Core
This commit is contained in:
parent
a1cc6c41a4
commit
98e01dfd98
2 changed files with 7 additions and 1 deletions
23
MudEngine/Core/ParseProperty.cs
Normal file
23
MudEngine/Core/ParseProperty.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue