12 lines
234 B
C#
12 lines
234 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public class OnlineRewardComponent:Entity
|
|||
|
{
|
|||
|
public static OnlineRewardComponent instance;
|
|||
|
public List<int> timeList = new List<int>();
|
|||
|
}
|
|||
|
}
|