Package game.slot

Examples of game.slot.SmallStraight


      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);
      House house = new House("House", 28);
      playerXStats.add(house);
View Full Code Here

TOP

Related Classes of game.slot.SmallStraight

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.