Files
Fishing2Server/Hotfix/Gate/System/GateUnitSystem.cs
2025-08-07 09:16:23 +08:00

16 lines
272 B
C#

using Fantasy.Entitas.Interface;
namespace NB.Gate;
public class GateUnitDestroySystem : DestroySystem<GateUnit>
{
protected override void Destroy(GateUnit self)
{
self.AccountID = 0;
self.Kick = false;
}
}
public class GateUnitSystem
{
}