Add getter to MoveDTO
parent
329886aa5a
commit
f07c534205
|
|
@ -11,4 +11,19 @@ public class MoveDTO {
|
||||||
this.toCol = toCol;
|
this.toCol = toCol;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getFromRow() {
|
||||||
|
return fromRow;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getFromCol() {
|
||||||
|
return fromCol;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getToRow() {
|
||||||
|
return toRow;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getToCol() {
|
||||||
|
return toCol;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue