before candybox editor update

This commit is contained in:
meelstorm
2025-09-16 10:42:43 +02:00
parent e5746ef766
commit dc12b3e51a
103 changed files with 96379 additions and 343 deletions

View File

@@ -0,0 +1,13 @@
using Point = System.Drawing.Point;
namespace CandyboxPlugin.Recipe
{
public class LearningParameters
{
public HistogramRecipeConfiguration Configuration { get; set; } = new HistogramRecipeConfiguration();
public float BlisterAngle { get; set; } = 0f;
public Point BlisterPosition { get; set; }
public List<CandyParameter> CandyParameters { get; set; } = new List<CandyParameter>();
public int ImageWidth { get; set; } = 1800;
}
}