LaraMo / Risk-Swift-Sloths

COMP 345 project taken in Fall 2023 - creating the RISK game with C++
Apache License 2.0
0 stars 2 forks source link

Refactor orders list #28

Closed EyalAzimov closed 11 months ago

LaraMo commented 11 months ago

very well done! i added a few comments regarding the comments ;) strings are immutable and are expensive when we create a bunch of them for no reason. I have not added the comment everywhere but notice how here a lot of those comments can be just like so: "comment \n\n\n" instead of "comment" << "\n" << "\'n"<< "\n", so try to fix that :)

image