summaryrefslogtreecommitdiff
path: root/src/tesseract/objects/Physical.java
blob: abf8c0f828b498d52143029207a8f07c57e3b3d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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(); 
}