mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
[+] 接入ET8服务端
[+] 接入ET8服务端
This commit is contained in:
26
Assets/GameScripts/DotNet/Core/Analyzer/EntitySystemOf.cs
Normal file
26
Assets/GameScripts/DotNet/Core/Analyzer/EntitySystemOf.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user