mattiadg / BoardGames

Two-players board games with AI engines. A project for learning software development in C++ and game programming.
Other
11 stars 13 forks source link

Remove hardcoded symbols #19

Closed mattiadg closed 6 years ago

mattiadg commented 6 years ago

In the code there are symbols like '.' in the board representation or magic numbers that should be changed into variable names. This is good for newcomers.

MuchtarSalimov commented 6 years ago

May I work on this?

I plan to follow the style seen here and just add them to the header files: const int BOARD_SIZE = 9;

mattiadg commented 6 years ago

Great, it's yours.

mattiadg commented 6 years ago

Addressed in #24 . Closing till the merging.