Window.Clear();
for(int c = 0; c < 14; c++){
for(int d = 0; d < 14; d++){
Window.Draw(board[c,d].disp);
}}
Window.Display();
I use nested loops for interfacing with the array, "board" that stores all of the objects. Window is the sf::RenderWindow that I am using and disp is the public sf::Shape::Rectangle for each object. However when I run this, nothing is drawn to the screen. This most likely has to do with me overlooking some blatantly obvious error but as stated above, I have not taken the time to fully comprehend C++ or SFML. Thank you for helping me regardless
.