18 lines
396 B
C#
18 lines
396 B
C#
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;
|
|
|
|
}
|
|
} |