17 lines
482 B
C#
17 lines
482 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ET
|
|
{
|
|
public class ActiveComponent:Entity
|
|
{
|
|
public static ActiveComponent instance;
|
|
/// <summary>
|
|
/// 签到,存领过的
|
|
/// </summary>
|
|
public Dictionary<long, int> SignInRewardDic = new Dictionary<long, int>();
|
|
/// <summary>
|
|
/// 日常奖励,存领过的
|
|
/// </summary>
|
|
public Dictionary<long, int> OnlineRewardDic = new Dictionary<long, int>();
|
|
}
|
|
} |