diff --git a/build/poker b/build/poker new file mode 100755 index 0000000..3be387c Binary files /dev/null and b/build/poker differ diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..9da671c --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,25 @@ +#include +#include + +/* +Poker (Texas Hold 'Em) game written in c++ +Designed by Jojackman1 + +Game Loop: + +Player imputs how many AI's up to 7 +Player inputs how many decks should be used + +Create a queue with one or two card decks with random orders +Give each entity a ballance of money randomly between 1000 and 2000 +Go arround and deal 2 cards to the player and each of the AI's +Dequeue 3 cards to the board +User will have the first turn +*/ + +int main () +{ + std::cout << "test" << std::endl; + + return 0; +}