filestructure setup
This commit is contained in:
BIN
build/poker
Executable file
BIN
build/poker
Executable file
Binary file not shown.
25
src/main.cpp
Normal file
25
src/main.cpp
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
#include <iostream>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
/*
|
||||||
|
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;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user