Files

17 lines
378 B
C#
Raw Permalink Normal View History

2026-06-02 10:26:44 +08:00
using System.Collections.Generic;
using SGModule.ConfigLoader;
namespace ZooMatch
2026-06-02 10:26:44 +08:00
{
[ConfigKey("PassingTasks")]
public class PassingTask
{
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;
}
}