14 lines
366 B
C#
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)>();
|
|||
|
}
|
|||
|
}
|