zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Game/Entity/Active/ActiveComponent.cs

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>();
}
}