package com.akjava.lib.common.graphics;
/**
* dont add method anymore to keep light on GWT
* @author aki
*
*/
public class SimpleRect {
private int x,y,width,height;
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
public SimpleRect(){
super();
}
public SimpleRect(int x, int y, int width, int height) {
super();
this.x = x;
this.y = y;
this.width = width;
this.height = height;
}
}