Simple Console Based Black Jack game built with Java
Card.java - Initialises card with Value and Suit enum for each
Deck.java - Handles a lot of the deck logic
Game.java - Handles game flow
GameObjects.java - Initialises values needed in the game and handles some game events
Suit.java - enum for suits
Value.java - enum for card numbers and values
- Create Card Object
- Create Deck Object (with all logic)
- Generate Game flow and logic
- Test that game works correctly
- Create GUI