merge the new developmentbranch into the test branch #39

Closed
j23f0712 wants to merge 431 commits from development2 into dev/test
171 changed files with 3623 additions and 1749 deletions
Showing only changes of commit d07eee6251 - Show all commits

View File

@@ -121,4 +121,14 @@ public Color getColor() {
public UUID getUuid() {
return uuid;
}
/**
* This method will return all necessary information of Piece class in a more readable way.
*
* @return information as a String.
*/
@Override
public String toString() {
return "Piece with UUID: %s and color: %s with state: %s".formatted(this.uuid, color, state);
}
}