mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
15 lines
264 B
C#
15 lines
264 B
C#
using System;
|
|
|
|
namespace ET
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class ChildOfAttribute : Attribute
|
|
{
|
|
public Type type;
|
|
|
|
public ChildOfAttribute(Type type = null)
|
|
{
|
|
this.type = type;
|
|
}
|
|
}
|
|
} |