package se.danielj.skuttandenyancat.components; import com.artemis.Component; /** * * @author Daniel Jonsson * @license GNU GPLv3 * */ public class Position extends Component { private float x; private float y; public float getX() { return x; } public void setX(float x) { this.x = x; } public float getY() { return y; } public void setY(float y) { this.y = y; } }