filestructure setup

This commit is contained in:
Jojackman1
2026-01-14 08:38:11 -07:00
parent 2e0de9fa66
commit 59e629ff50
2 changed files with 25 additions and 0 deletions

BIN
build/poker Executable file

Binary file not shown.

25
src/main.cpp Normal file
View 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;
}