18 lines
518 B
C#
18 lines
518 B
C#
|
using Cal.DataTable;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
|
|||
|
public class GoodsEffectComponent : Entity
|
|||
|
{
|
|||
|
public static GoodsEffectComponent Instance { get; set; }
|
|||
|
|
|||
|
public readonly Dictionary<Type, Queue<GoodsEffect>> _goodsEffectPoolDic = new Dictionary<Type, Queue<GoodsEffect>>();
|
|||
|
public readonly Dictionary<long, Dictionary<int, GoodsEffect>> _goodsEffectBuffDic = new Dictionary<long, Dictionary<int, GoodsEffect>>();
|
|||
|
|
|||
|
}
|
|||
|
}
|