state: Added more functionality

This commit is contained in:
2023-04-24 16:03:04 +10:00
parent 7ed595dced
commit 2179ba5eaa
5 changed files with 355 additions and 14 deletions

View File

@@ -65,6 +65,6 @@ public class Coord {
*/
@Override
public String toString() {
return "(" + x + ", " + y + ")";
return x + "," + y;
}
}