| 12345678910 |
- using System.Collections.Generic;
- namespace ET
- {
- public class ItemExpireInfosComponenet : Entity, IAwake, IUnitCache, ITransfer, IDestroy
- {
- //物品过期时间<物品id,过期时间(单位毫秒)>
- public Dictionary<int, long> ItemExpireMillisecsDic = new Dictionary<int, long>();
- }
- }
|