package se.danielj.skuttandenyancat.components;
import com.artemis.Component;
/**
*
* @author Daniel Jonsson
* @license GNU GPLv3
*
*/
public class Size extends Component {
private int width;
private int height;
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;
}
}