Eintoo/GameServer/Server/Hotfix/Outter/Gate/GateComponentSystem.cs
2025-04-22 15:31:25 +08:00

20 lines
340 B
C#

using Fantasy;
using Fantasy.Entitas;
using Fantasy.Entitas.Interface;
namespace Hotfix;
public class GateComponentAwakeSystem : AwakeSystem<GateComponent>
{
protected override void Awake(GateComponent self)
{
self.AddComponent<GameAccountManageComponent>();
}
}
public static class GateComponentSystem
{
}