public Pair GetMoveY() { Pair p = new Pair(this.x, this.y + 1); return(p); }
public Pair GetMoveX() { Pair p = new Pair(this.x + 1, this.y); return(p); }