private void initScore() {
    final float x = GAME_MARGIN_HEIGHT;
    final float y = (int) ((float) ScreenUtils.getHeight() * 0.80);
    final float w = ScreenUtils.getWidth() - GAME_MARGIN_HEIGHT * 2;
    final float h = ScreenUtils.getHeight() / 6;

    scoreComponent = new ScoreComponent(x, y, textureRegionScore, this, darkFont, this);

    scoreComponent.setSize(w, h);

    getEngine().getScene().attachChild(scoreComponent);
  }
 private float getHeight(float ratio) {
   return ScreenUtils.getHeight() * ratio;
 }
  private void initDimension() {
    final int widthRatio = (ScreenUtils.getWidth() - GAME_MARGIN_WIDTH * 2) / this.getColumn();
    final int heightRatio = (ScreenUtils.getHeight() - GAME_MARGIN_HEIGHT * 2) / this.getRaw();

    min = Math.min(widthRatio, heightRatio);
  }