A Die Game Made With Java ( An Assignment of My Course )
public static void main(String[]) // Assignment 3 main
private int dieValue // holds the value of the ONE die
private Random randomNumbers // common random number generator
public Die() // default (no-arg) constructor
public void rollDie() // Generate a random value for die
public void displayDie() // Displays the value of die
public int getValue() // Returns value of die
private int potAmount // holds the value of the pot
private int betAmount // holds the bet value
private String betType // holds the bet type
private Scanner input // common scanner
public Game() // default (no-arg) constructor
public void getBetFromUser() // prompts the user to enter a valid bet amount and type
public void playGame() // logic for the game