Piece fixes

This commit is contained in:
Daniel Mills 2021-01-08 20:15:51 -05:00
parent a9a964cc75
commit 3c650a7c50

View File

@ -91,4 +91,8 @@ public class PlannedPiece {
{ {
return this.position.add(position); return this.position.add(position);
} }
public boolean isFull() {
return connected.size() >= piece.getConnectors().size();
}
} }