17 lines
373 B
C#
17 lines
373 B
C#
using System.Collections.Generic;
|
|
using SGModule.ConfigLoader;
|
|
|
|
namespace BallKingdomCrush
|
|
{
|
|
[ConfigKey("Durationtasks")]
|
|
public class Durationtasks
|
|
{
|
|
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;
|
|
}
|
|
} |