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

16 lines
262 B
C#

using System;
namespace ET
{
public class TestComponentAwakeSystem: AwakeSystem<TestComponent>
{
public override void Awake(TestComponent self)
{
}
}
public class TestComponentSystem
{
}
}