Esempio n. 1
0
 public GameEvaluator()
 {
     chain = new GameEvaluationChain(
         new IGameEvaluation[] {
         new RoyalFlush(),
         new StraightFlush(),
         new FourOfAKind(),
         new FullHouse(),
         new Flush(),
         new Straight()
         //new ThreeOfAKind(),
         //new TwoPair(),
         //new OnePair(),
         //new HighCard()
     });
 }
Esempio n. 2
0
 public GameEvaluator()
 {
     chain = new GameEvaluationChain(
         new IGameEvaluation[] {
             new RoyalFlush(),
             new StraightFlush(),
             new FourOfAKind(),
             new FullHouse(),
             new Flush(),
             new Straight()
             //new ThreeOfAKind(),
             //new TwoPair(),
             //new OnePair(),
             //new HighCard()
     });
 }