Back to project page SCBIO-OneButtonLarry.
The source code is released under:
MIT License
If you think the Android project SCBIO-OneButtonLarry listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.scbio.onebuttonlarry; //from w w w.j av a2 s. c o m public class Highscore { private long score; private String player; public Highscore(String player, long score){ this.score = score; this.player = player; } public long getScore() { return score; } public String getPlayer() { return player; } }