Ejemplo n.º 1
0
 public static ISceneViewModel CreateScene(ISceneMediatorViewModel sceneMediator = null)
 {
     if (_scene == null)
     {
         _scene = new SceneViewModel(sceneMediator);
     }
     return(_scene);
 }
Ejemplo n.º 2
0
 private SceneViewModel(ISceneMediatorViewModel sceneMediator)
 {
     _sceneMediator = sceneMediator;
 }