Package eg.triviaGameExample

Examples of eg.triviaGameExample.Player


    this.playerName = playerName;
  }

  public boolean addPlayer() {
    theGame = StaticGame.theGame;
    Player thePlayer = theGame.addPlayer(playerName);
    return theGame.playerIsPlaying(thePlayer);
  }
View Full Code Here


    return theGame.playerIsPlaying(thePlayer);
  }

  public boolean removePlayer() {
    theGame = StaticGame.theGame;
    Player thePlayer = theGame.getPlayerNamed(playerName);
    theGame.removePlayer(thePlayer);
    return playerWasRemoved(thePlayer);
  }
View Full Code Here

TOP

Related Classes of eg.triviaGameExample.Player

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.