Initial commit of MPLABX version

This commit is contained in:
A.M. Rowsell 2025-07-30 21:48:16 -04:00
commit d80b03bdf0
Signed by untrusted user who does not match committer: amr
GPG key ID: E0879EDBDB0CA7B1
10 changed files with 251 additions and 0 deletions

25
Board.cpp Normal file
View file

@ -0,0 +1,25 @@
/*
* File: Board.cpp
* Author: amr
*
* Created on July 30, 2025, 9:20 PM
*/
#include "Board.hpp"
Board::Board() {
}
Board::~Board() {
}
void Board::setupInitialPosition() {
return;
}
void Board::movePiece(int fromX, int fromY, int toX, int toY) {
return;
}
void Board::deserializeBoard(uint64_t incomingBoard) {
return;
}