zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Hotfix/Game/System/Other/TestComponentSystem.cs

20 lines
421 B
C#
Executable File

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)
{
}
}
}