Add place piece function

This commit is contained in:
2025-11-27 21:24:10 +08:00
parent e4c8325d33
commit c6a0f3b735
8 changed files with 155 additions and 90 deletions

View File

@@ -0,0 +1,10 @@
#include "Rule.h"
bool Rule::canConnect(const PlayerID a, const PlayerID b) {
if (a == b) {
return true;
}
return false;
}