Add ConnectedComponentManager

This commit is contained in:
2025-11-26 15:20:18 +08:00
parent ff2ddc6fd4
commit d43ca4394d
9 changed files with 379 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
#include "Piece.h"
Piece::Piece(PlayerColer color) : m_color(color) {
}
Piece::~Piece() {
}
PlayerColer Piece::getPlayerColor() const {
return m_color;
}