Package cero.games.base

Examples of cero.games.base.RoundBase$SorterRulesFirst


*
*/
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


* @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

Related Classes of cero.games.base.RoundBase$SorterRulesFirst

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.