organize: moved include files to inc/

This commit is contained in:
A.M. Rowsell 2025-08-28 10:45:41 -04:00
commit 22fe7bdf0b
Signed by untrusted user who does not match committer: amr
GPG key ID: E0879EDBDB0CA7B1
7 changed files with 7 additions and 7 deletions

View file

@ -6,7 +6,7 @@
// This Source Code Form is "Incompatible With Secondary Licenses", as
// defined by the Mozilla Public License, v. 2.0.
#include "Board.hpp"
#include "inc/Board.hpp"
#include "inc/strFuncs.hpp"
/*
@ -40,7 +40,7 @@ Board::~Board() {
void Board::setupInitialPosition() {
// set up the board grid with smart pointers
// initialize each square with a Piece
// initialize each square with a Piece or nullptr
playerTurn = PL_WHITE;
for(int i = 0; i < 8; i++) {
switch(i) {