public virtual void ExecuteFinishCurrentLevel(FinishCurrentLevelCommand command) {
     command.Sender = LevelRoot;
     LevelRoot.FinishCurrentLevel.OnNext(command);
 }
 public virtual void FinishCurrentLevelHandler(FinishCurrentLevelCommand command)
 {
     this.FinishCurrentLevel(command.Sender as LevelRootViewModel);
 }
Example #3
0
 public virtual void FinishCurrentLevelHandler(FinishCurrentLevelCommand command)
 {
     this.FinishCurrentLevel(command.Sender as LevelRootViewModel);
 }
Example #4
0
 public virtual void ExecuteFinishCurrentLevel(FinishCurrentLevelCommand command)
 {
     command.Sender = LevelRoot;
     LevelRoot.FinishCurrentLevel.OnNext(command);
 }