Package org.cspoker.external.pokersource.commands.poker

Examples of org.cspoker.external.pokersource.commands.poker.Fold


  public void fold() throws IllegalActionException, RemoteException {
    if(!isSittingIn) {
      throw new IllegalActionException("Can't act when not sitting in.");
    }
    try {
      conn.sendRemote(new Fold(serial, game_id));
    } catch (JSONException e) {
      throw new IllegalActionException(e);
    }
  }
View Full Code Here

TOP

Related Classes of org.cspoker.external.pokersource.commands.poker.Fold

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.