Package de.creepsmash.server

Examples of de.creepsmash.server.HighscoreService


    logger.info("game over for " + client + " (position: " + position + ")");
    sender.gameOver();
    if (gameOverForAll()) {
      logger.info("saving scores: " + this.playerNamePositionMap);
      (new HighscoreService()).createHighscoreEntry(this.playerNamePositionMap);
     
      //save Game in DB
      this.getGame().SaveToJournal(this.playerNamePositionMap, startDate);
      return new EndedGameState(this.getGame());
    } else {
View Full Code Here

TOP

Related Classes of de.creepsmash.server.HighscoreService

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.