zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Game/Entity/User/OffLinePlayerBuffComponent.cs

14 lines
366 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ET
{
public class OffLinePlayerBuffComponent:Entity
{
public static OffLinePlayerBuffComponent Instance{ get; set; }
//!<id,<skillId,lastestTime>>
public Dictionary<long, (int, long)> BuffDic { get; set; } = new Dictionary<long, (int, long)>();
}
}