Add getter to MoveDTO

Quicksave
Justin 2025-06-19 18:33:05 +02:00
parent 329886aa5a
commit f07c534205
1 changed files with 15 additions and 0 deletions

View File

@ -11,4 +11,19 @@ public class MoveDTO {
this.toCol = toCol;
}
public int getFromRow() {
return fromRow;
}
public int getFromCol() {
return fromCol;
}
public int getToRow() {
return toRow;
}
public int getToCol() {
return toCol;
}
}