Add placed functions in private space

This commit is contained in:
Lev
2021-05-21 23:48:15 -05:00
parent 4be6e913cb
commit 1a7fc3b2d7
6 changed files with 186 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
class MerkelMain
{
public:
MerkelMain();
private:
/* Starts the sim */
void init();
void printMenu();
void printHelp();
void printMarketStats();
void enterOffer();
void enterBid();
void printWallet();
void goToNextTimeFrame();
int getUserOption();
void processUserOption(int userOption);
};