public void PlayerUpdate()
 {
     if (_canMove == true || _debug == true)
     {
         _movement.MovementUpdate();
         _animations.AnimationsUpdate();
         _aim.AimUpdate();
     }
 }