CTT/Server/Hotfix/Game/System/Other/ActiveComponentSystem.cs

15 lines
294 B
C#

namespace ET
{
public class ActiveComponentAwakeSystem:AwakeSystem<ActiveComponent>
{
public override void Awake(ActiveComponent self)
{
ActiveComponent.instance = self;
}
}
public static class ActiveComponentSystem
{
}
}