mikeknep / SOLID

Demonstrating the SOLID design principles in Java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Board size is inconsistent

marcosalles opened this issue · comments

I've noticed when you create the board you make it 3 x N, being N passed as a parameter on the constructor. But when the presenter will present the board, it assumes it's N x N.

I guess the board must relay it's size to the presenter as well as the spots available.