Package cero.games.uno

Examples of cero.games.uno.ActionPlayACard


    if (playedcard == null) {
      System.out.println("incorrect card id");
      return false;
    }

    ActionPlayACard action = new ActionPlayACard();
    ArrayList<Card> colcards = new ArrayList<Card>();
    colcards.add(playedcard);
    try {
      action
          .playerActed(new ActionEvent(game, player, from, to,
              colcards));
    } catch (ActionException e) {
      // there shouldn't be any problem here !
      e.printStackTrace();
View Full Code Here


        }
      }
      if (!cardfound)
        return;

      ActionPlayACard action = new ActionPlayACard();
      ArrayList<Card> colcards = new ArrayList<Card>();
      colcards.add(playedcard);

      try {
        action.playerActed(new ActionEvent(game, player, from, to,
            colcards));
        game.registerAction(action);
      } catch (ActionException e) {
        // there shouldn't be any problem here !
        e.printStackTrace();
View Full Code Here

TOP

Related Classes of cero.games.uno.ActionPlayACard

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.