void GamePaused(NotificationCenter.Notification note)
 {
     canMove = false;
 }
 void GameResumed(NotificationCenter.Notification note)
 {
     canMove = true;
 }
 void GameStarted(NotificationCenter.Notification note)
 {
     canMove = true;
 }