package ListPrepQuestions_PastExams
/**
* Used to store coordinates
* @author huy.pham
*/
public class Position {
public int x;
public int y;
public Position(int x, int y) {
this.x = x;
this.y = y;
}
}
package ListPrepQuestions_PastExams
/**
* Used to store coordinates
* @author huy.pham
*/
public class Position {
public int x;
public int y;
public Position(int x, int y) {
this.x = x;
this.y = y;
}
}