This is a simple Blackjack game implemented in Java using Swing for the GUI. The game allows a player to play against the dealer with the standard Blackjack rules.
- GUI built with Java Swing
- Randomized deck shuffle every game
- Replay function (unfinished)
- Chips betting system (unfinished)
- Chips saving function (unfinished)
- Start the game by running the Java program.
- The player and the dealer are each dealt two cards. One of the dealer's cards is hidden.
- The player can hit (draw an additional card) or stand (end their turn and let the dealer finish drawing).
- The dealer hits until they are at 17 or higher.
- Cases:
- If the player exceeds 21, they lose (bust).
- If the dealer exceeds 21, the player wins.
- The higher value wins if both are under 21.
- A tie results in a push.