Ejemplo n.º 1
0
 public void PlaySpace()
 {
     if (CurrentSpace != null)
     {
         CurrentSpace.ChangeState(State.Play);
     }
 }
Ejemplo n.º 2
0
 public void EditSpace()
 {
     if (CurrentSpace != null)
     {
         CurrentSpace.ChangeState(State.Edit);
     }
 }