/**
 * PA3: Dice Roulette (Decisions and Logic).
 * 
 * @author YOUR NAME
 * @version DUE DATE
 */
public class Roulette {

   public static final int UNDER7 = 1408;
   public static final int OVER7 = 1895;
   public static final int ODD = 1793;
   public static final int EVEN = 1955;
   public static final int TWO = 1896;
   public static final int THREE = 1116;
   public static final int FOUR = 1991;
   public static final int FIVE = 1528;
   public static final int SIX = 1655;
   public static final int SEVEN = 1217;
   public static final int EIGHT = 1583;
   public static final int NINE = 1018;
   public static final int TEN = 1691;
   public static final int ELEVEN = 1390;
   public static final int TWELVE = 1696;

   /**
    * Calculates the payout for a given turn.
    *
    * @param dice     current values of the dice
    * @param category selected by the player
    * @param amount   how much money was bet
    * @return how much money should be paid
    */
   public static double payout(Dice dice, int category, double amount) {
      double payment;

      // Write a decision statement to evaluate the score for each category.
      // Cases that require more than several lines of code should be done
      // in separate methods below. Each case should set the value of the
      // payment variable, so that you will have only one return statement.
      payment = 0;

      return payment;
   }

}
