Package game.slot

Examples of game.slot.XOAK


      //Add the lower section score slots
      Pair onePair = new Pair("One pair", 12);
      playerXStats.add(onePair);
      TwoPair twoPair = new TwoPair("Two pairs", 22);
      playerXStats.add(twoPair);
      XOAK threeOfAKind = new XOAK(3, "Three of a kind", 18);
      playerXStats.add(threeOfAKind);
      XOAK fourOfAKind = new XOAK(4, "Four of a kind", 24);
      playerXStats.add(fourOfAKind);
      SmallStraight small = new SmallStraight("Small straight", 15);
      playerXStats.add(small);
      LargeStraight large = new LargeStraight("Large Straight", 20);
      playerXStats.add(large);
View Full Code Here

TOP

Related Classes of game.slot.XOAK

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.