public virtual void ExecuteAddCube(AddCubeCommand command)
 {
     command.Sender = Game;
     Game.AddCube.OnNext(command);
 }
Example #2
0
 public virtual void AddCubeHandler(AddCubeCommand command)
 {
     this.AddCube(command.Sender as GameViewModel);
 }