mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
26 lines
523 B
C#
26 lines
523 B
C#
using System;
|
|
|
|
namespace ET
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class EntitySystemOfAttribute: BaseAttribute
|
|
{
|
|
public Type type;
|
|
|
|
public EntitySystemOfAttribute(Type type)
|
|
{
|
|
this.type = type;
|
|
}
|
|
}
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class LSEntitySystemOfAttribute: BaseAttribute
|
|
{
|
|
public Type type;
|
|
|
|
public LSEntitySystemOfAttribute(Type type)
|
|
{
|
|
this.type = type;
|
|
}
|
|
}
|
|
} |