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

14 lines
247 B
C#
Raw Normal View History

2021-04-15 00:12:07 +08:00
namespace ET
{
public class TestComponentAwakeSystem: AwakeSystem<TestComponent>
{
public override void Awake(TestComponent self)
{
}
}
public class TestComponentSystem
{
}
}