17 lines
360 B
C#
17 lines
360 B
C#
using System.Collections.Generic;
|
|||
|
|
using SGModule.ConfigLoader;
|
||
|
|
|
||
|
|
namespace BallKingdomCrush
|
||
|
|
{
|
||
|
|
[ConfigKey("ADTasks")]
|
||
|
|
public class ADTask
|
||
|
|
{
|
||
|
|
public int id;
|
||
|
|
public string text_read;
|
||
|
|
public int tol_num;
|
||
|
|
public int reward_num;
|
||
|
|
public bool is_get;
|
||
|
|
public int[] Boost;
|
||
|
|
public int[] weight;
|
||
|
|
}
|
||
|
|
}
|