// Put Name Here
// 2/4/2026
// Framework for COP 3330 Program 3: Casino

/*** Note: as is, this file doesn't compile because the classname in it is casino, but it'spot
     stored in the file casinoframework.java. Please resave as casino.java and add code.
***/

import java.util.*;

public class casino {

	public static Random rndObj;
	public static Scanner stdin;
	
	public static void main(String[] args) {
	
		// All games will use these objects.
		rndObj = new Random();
		stdin = new Scanner(System.in);
		
		int chips = 100;
		System.out.println("Welcome to Arup's Casino. You begin with 100 chips. Buenos suerte!");
		int choice = getMenuChoice();
		
		// Process user choice.
		while (choice != 3) {
		
			// Craps.
			if (choice == 1) {
			
				// Fill in
			
			}
			
			// Roulette
			else if (choice == 2) {
			
				// Fill in
			}
			
			// Get next choice.
			choice = getMenuChoice();
		}
		
		// Ending message.
		System.out.println("Thanks for visiting Arup's casino. You ended with "+chips+" number of chips.");
	}
	
	// Prints the menu and gets the user's choice.
	public static int getMenuChoice() {
	
		// Fill in.
		
	}
	
	// Let's the user play one game of craps and returns true iff they won, false otherwise.
	public static boolean craps() {
		
		// Fill in.
		
	}
	
	// Plays a game of Arup's Roulette and returns -1 if you lose, 1 if you win a 1:1 payout
	// and 36 if you win an 36:1 payout.
	public static int roulette() {
	
		// Fill in.
		
	}
	
	// Returns a string storing the corresponding roulette wheel spot with numerical id id.
	public static String getRouletteSpace(int id) {
		
		// Fill in.
		
	}
	
	// Asks the user how much to bet in between 1 and maxChips number of chips.
	public static int getBet(int maxChips) {
		
		// Fill in.
		
	}
}