public void MoveHeroRight() { if (hero.GetX() < width) { hero.MoveRight(); } }
public void MoveHeroRight() { hero.MoveRight(); }