using System; using System.Collections.Generic; namespace ET { public class MainUISlotDestroySystem : DestroySystem { public override void Destroy(MainUISlot self) { self.RealId = 0; self.Count = 0; } } }