Commit 95728c84 authored by 9731077's avatar 9731077

fixed bug & finished

parent 329b56a2
......@@ -5,6 +5,11 @@ public class Robber {
private int y;
private int moveNum;
public Robber(int x, int y) {
this.x = x;
this.y = y;
}
public void setY(int y) {
this.y = y;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment