public FourOfAKindRanker(HandRanker nextRanker)
     : base(nextRanker)
 {
 }
Example #2
0
 public ThreeOfAKindRanker(HandRanker nextRanker) : base(nextRanker)
 {
 }
Example #3
0
 public TwoPairRanker(HandRanker nextRanker) : base(nextRanker)
 {
 }
Example #4
0
 public FullHouseRanker(HandRanker nextRanker) : base(nextRanker)
 {
 }
Example #5
0
 protected HandRanker()
 {
     next = null;
 }
Example #6
0
 protected HandRanker(HandRanker nextRanker)
 {
     this.next = nextRanker;
 }
Example #7
0
 public FlushRanker(HandRanker nextRanker) : base(nextRanker)
 {
 }
Example #8
0
 public StraightRanker(HandRanker nextRanker) : base(nextRanker)
 {
 }