package tesseract.objects; import javax.vecmath.Vector3f; /** * This interface is applied to any object that has a position in the world. * * @author Jesse Morgan */ public interface Physical { /** * @return The position of the object in the world. */ Vector3f getPosition(); }