Position Class
unknown
java
a year ago
286 B
59
Indexable
public class Position {
private int row;
private int col;
Position(int row, int col){
this.row = row;
this.col = col;
}
public int getRow(){
return this.row;
}
public int getCol(){
return this.col;
}
}
Editor is loading...
Leave a Comment