Package eas.users.demos.polytris.highscore

Examples of eas.users.demos.polytris.highscore.HighscoreEntry


    public Highscore getScorez() {
        return this.scorez;
    }
   
    public void addHighscore(long score, String name, int level) {
        if (this.scorez.addEntry(new HighscoreEntry(score, name, level))) {
            this.scorez.store();
        }
    }
View Full Code Here

TOP

Related Classes of eas.users.demos.polytris.highscore.HighscoreEntry

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.