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