summaryrefslogtreecommitdiff
path: root/src/tesseract/Forceable.java
blob: aedf42f0a003c558c00af056066828569036e4c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package tesseract;

import javax.vecmath.Vector3f;

/**
 * Objects that can have forces applied to them implement this interface.
 * 
 * @author Jesse Morgan
 */
public interface Forceable {
	public void addForce(final Vector3f force);
}