-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3e6a42
commit feed664
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,4 +53,4 @@ void Deck::printDeck(int size) { | |
cards[i].printCard(); | ||
} | ||
std::cout << '\n'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# Blackjack | ||
Play blackjack against your computer! The Card.cpp and blackjack.h files can be used as base for any card game, since they contain all the mechanisms to create, shuffle and print packs and cards. This project uses the C++ standard library and the Visual Studio precompiled headers. The inspiration for this project was found over here: http://www.learncpp.com/cpp-tutorial/6-x-chapter-6-comprehensive-quiz/ | ||
Play blackjack against your computer! The Card.cpp, Deck.cpp and blackjack.h files can be used as base for any card game, since they contain all the mechanisms to create, shuffle and print packs and cards. This project uses the C++ standard library and the Visual Studio precompiled headers. The inspiration for this project was found over here: http://www.learncpp.com/cpp-tutorial/6-x-chapter-6-comprehensive-quiz/ |