- Card - Class in game
-
The Card class is a class that creates Card objects that are used
in the creation of the deck in Euchre and used to compare in the
played comparison.
- Card() - Constructor for class game.Card
-
A default constructor that sets card name to -1 and the suit to
null.
- Card(int, Suits) - Constructor for class game.Card
-
A Constructor that takes an integer for the card name and a suit
for the card itself.
- createDeck() - Method in class game.Euchre
-
A helper method used to create the deck in main.