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