Files

18 lines
396 B
C#
Raw Permalink Normal View History

2026-07-06 16:27:14 +08:00
using System.Collections.Generic;
using SGModule.ConfigLoader;
namespace TowerClimberChronicles
{
[ConfigKey("FlowerMatch")]
public class FlowerMatch
{
public int id;
public int level;
public int ElementTypes;
public int ElementCount;
public int TypeDistribution;
public float[] Difficulty;
public float[] Accuracy;
}
}