Examples of RoundBase


Examples of cero.games.base.RoundBase

*
*/
public class BatailleGame extends GameBase {

  public BatailleGame() {
    RoundBase subRound = new RoundBase();
    RoundBase round = new RoundBase();
    round.getSubRounds().add(subRound);
    getRounds().add(round);

    // adding the actions
    getActions().add(new ActionLookAtCards());
    getActions().add(new ActionLookAtZone());
View Full Code Here

Examples of cero.games.base.RoundBase

* @author Roux Camille
*/
public class UnoGame extends GameBase {
 
  public UnoGame(){
    getRounds().add(new RoundBase());
   
    getActions().add(new ActionLookAtZone());
    getActions().add(new ActionPick());
    getActions().add(new ActionPlayACard());
    getActions().add(new ActionSkipTurn());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.