Package core.Score

Examples of core.Score.ScoreEntry


    if(highscore)
    {
      for(int i = 0; i < Score.getInstance().getScorelist().length; i++)
      {
        ScoreEntry temp = Score.getInstance().getScorelist()[i]; // Temporärer Scoreentry
        Renderer.getInstance().drawText(temp.getName(), 200, i * 50 + 40, Color.BLACK);
        Renderer.getInstance().drawText(String.valueOf(temp.getPoints()), 500, i * 50 + 40, Color.BLACK);
      }
    }

  } //draw end
View Full Code Here

TOP

Related Classes of core.Score.ScoreEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.