- public class DirStep {
- private int xstep;
- private int ystep;
- public DirStep(int xstep,int ystep){
- this.xstep = xstep;
- this.ystep = ystep;
- }
- public int getXstep() {
- return xstep;
- }
- public void setXstep(int xstep) {
- this.xstep = xstep;
- }
- public int getYstep() {
- return ystep;
- }
- public void setYstep(int ystep) {
- this.ystep = ystep;
- }
- }