CTT/Server/Hotfix/Game/System/User/BuffLibSystem.cs

17 lines
314 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Text;
namespace ET
{
public class BuffLibDestroySystem : DestroySystem<BuffLib>
{
public override void Destroy(BuffLib self)
{
self.buffDic.Clear();
self.goodsEffectBuffDic.Clear();
}
}
}