Package hand

Examples of hand.BlackJackHand


   * for each behaviour.
   */
  public void testDrawing()
  {
    HandBehaviour behaviours[] = {
        new BlackJackHand(), new MemoryHand(), new WarHand(), new GoFishHand()};
    int startSizes[] = {0, 0, 26, 7};
    for (int i = 0; i < behaviours.length; i++)
    {
      player = new Player(behaviours[i]);
      player.draw();
View Full Code Here


  private boolean firstDraw;
  protected HandBehaviour handBehaviour;
 
  public Player()
  {
    this(new BlackJackHand());
  }
View Full Code Here

TOP

Related Classes of hand.BlackJackHand

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.