package net.mostlyoriginal.ns2d.component; import com.artemis.Component; /** * @author Daan van Yperen */ public class Pos extends Component { public float x; public float y; public Pos(float x, float y) { this.x = x; this.y = y; } }