15 lines
272 B
C#
15 lines
272 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public class MainUISlotDestroySystem : DestroySystem<MainUISlot>
|
|||
|
{
|
|||
|
public override void Destroy(MainUISlot self)
|
|||
|
{
|
|||
|
self.RealId = 0;
|
|||
|
self.Count = 0;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|