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

16 lines
262 B
C#
Raw Normal View History

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