2026-06-02 10:26:44 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using SGModule.ConfigLoader;
|
|
|
|
|
|
2026-06-02 11:11:47 +08:00
|
|
|
namespace ZooMatch
|
2026-06-02 10:26:44 +08:00
|
|
|
{
|
|
|
|
|
[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;
|
|
|
|
|
}
|
|
|
|
|
}
|