public MainMenuScreen(AsteroidShooterGame _game) {
    this.game = _game;

    camera = new OrthographicCamera();
    camera.setToOrtho(false, AsteroidShooter.V_WIDTH, AsteroidShooter.V_HEIGHT);

    batch = game.getSpriteBatch();
    font = new BitmapFont();
  }