protected LightingBase(string key, string name) : base(key, name) { LightingScenes = new List <LightingScene>(); CurrentLightingScene = new LightingScene(); //CurrentLightingSceneFeedback = new IntFeedback(() => { return int.Parse(this.CurrentLightingScene.ID); }); }
public abstract void SelectScene(LightingScene scene);
public LightingSceneChangeEventArgs(LightingScene scene) { CurrentLightingScene = scene; }