15 lines
294 B
C#
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
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|