Uses of Class
jgame.Highscore

Packages that use Highscore
jgame Contains the platform-independent classes of JGame. 
jgame.platform Contains the platform-dependent JGame classes. 
 

Uses of Highscore in jgame
 

Methods in jgame that return Highscore
static Highscore[] Highscore.insert(Highscore[] highscores, Highscore newscore)
          Try to insert new highscore in given highscore list.
static Highscore[] Highscore.load(java.io.InputStream in)
           
 

Methods in jgame with parameters of type Highscore
static int Highscore.findPos(Highscore[] highscores, int newscore)
          Find position (array index) of given score in highscore list, -1 means not in highscores.
static Highscore[] Highscore.insert(Highscore[] highscores, Highscore newscore)
          Try to insert new highscore in given highscore list.
static Highscore[] Highscore.insert(Highscore[] highscores, Highscore newscore)
          Try to insert new highscore in given highscore list.
static void Highscore.save(Highscore[] highscores, java.io.OutputStream out)
           
 

Uses of Highscore in jgame.platform
 

Fields in jgame.platform declared as Highscore
 Highscore[] StdGame.highscores
          Highscore table, null (default) means not defined.
 

Methods in jgame.platform with parameters of type Highscore
 void StdGame.setHighscores(int nr_highscores, Highscore default_hisc, int maxnamelen)
          Define highscore table.