예제 #1
0
        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); });
        }
예제 #2
0
 public abstract void SelectScene(LightingScene scene);
예제 #3
0
 public LightingSceneChangeEventArgs(LightingScene scene)
 {
     CurrentLightingScene = scene;
 }