Files
ZooMatch-GP/Assets/ZooMatch/Define/Model/Config/Game/DurationtasksModel.cs
T

17 lines
381 B
C#
Raw 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("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;
}
}