2019-04-10 01:43:24 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Switch_Toolbox.Library;
|
|
|
|
|
using Switch_Toolbox.Library.Rendering;
|
|
|
|
|
|
|
|
|
|
namespace FirstPlugin.Turbo.CourseMuuntStructs
|
|
|
|
|
{
|
|
|
|
|
public class ProbeLightingWrapper : TreeNodeCustom
|
|
|
|
|
{
|
2019-04-10 21:36:10 +02:00
|
|
|
|
public ProbeLighting ProbeLightingConfig;
|
2019-04-10 01:43:24 +02:00
|
|
|
|
|
|
|
|
|
public ProbeLightingWrapper(ProbeLighting config) {
|
|
|
|
|
Text = "course.bglpbd (Probe Lighting)";
|
|
|
|
|
ProbeLightingConfig = config;
|
2019-04-10 21:36:10 +02:00
|
|
|
|
Checked = true;
|
2019-04-10 01:43:24 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|