20 lines
421 B
C#
20 lines
421 B
C#
using System;
|
|
using Cal.DataTable;
|
|
|
|
namespace ET
|
|
{
|
|
public class TestComponentAwakeSystem: AwakeSystem<TestComponent>
|
|
{
|
|
public override void Awake(TestComponent self)
|
|
{
|
|
TimerComponent.Instance.NewFrameTimer(self.Test);
|
|
}
|
|
}
|
|
public static class TestComponentSystem
|
|
{
|
|
public static void Test(this TestComponent self)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |