A few changes, mostly to update the .NET framework version. Started work on the settings menu by adding experiments.
9 lines
283 B
C#
9 lines
283 B
C#
namespace Luski.Classes;
|
|
|
|
public class ExperimentInfo
|
|
{
|
|
public string DisplayName { get; set; } = default!;
|
|
public string Name { get; set; } = default!;
|
|
public List<ExperimentSelectorInfo> Options { get; set; } = default!;
|
|
public int? Selected { get; set; } = null;
|
|
} |