public void Turn(bool toPlayer)
 {
     if (toPlayer)
     {
         Player.SetAction(true);
         Monster.SetAction(false);
     }
     else
     {
         m_View.SetStepCount(true, 0);
         Player.SetAction(false);
         Monster.SetAction(true);
     }
 }