Files
TEngine/Assets/GameScripts/DotNet/Core/Analyzer/ChildOfAttribute.cs
ALEXTANG 336d4b2eb9 [+] 接入ET8服务端
[+] 接入ET8服务端
2023-07-13 12:23:48 +08:00

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;
}
}
}