CTT/Server/Hotfix/Game/System/UI/MainUISlotSystem.cs

15 lines
272 B
C#
Executable File

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;
}
}
}