CTT/Server/Model/Game/Entity/OnlineRewardComponent.cs

12 lines
234 B
C#
Executable File

using System;
using System.Collections.Generic;
namespace ET
{
public class OnlineRewardComponent:Entity
{
public static OnlineRewardComponent instance;
public List<int> timeList = new List<int>();
}
}