We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6507e4f commit 971255cCopy full SHA for 971255c
1 file changed
monopoly.cpp
@@ -1105,6 +1105,17 @@ bool trading_menue(player &p){
1105
do{
1106
displayGameBoard();
1107
std::cout<<colorCodes[players[otherplayers[sel]].color].first << players[otherplayers[sel]].symbol << " " << players[otherplayers[sel]].name << RESET_COLOR << "do you accept the trade?\n"
1108
+ <<"You give: $" <<amount2;
1109
+ for(int i : tiles2){
1110
+ std::cout<<", "<<colorCodes[gameBoard[i].color].first<<gameBoard[i].tileName;
1111
+ }
1112
+ std::cout<<std::endl;
1113
+ std::cout<<"You get: $"<<amount1;
1114
+ for(int i : tiles1){
1115
1116
1117
1118
+ std::cout
1119
<<"┌────────┬────────┐\n"
1120
<<"│ 1: YES │ 0: NO │\n"
1121
<<"└────────┴────────┘\n"
0 commit comments