summaryrefslogtreecommitdiff
path: root/src/tesseract/objects/Physical.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/tesseract/objects/Physical.java')
-rw-r--r--src/tesseract/objects/Physical.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/tesseract/objects/Physical.java b/src/tesseract/objects/Physical.java
deleted file mode 100644
index 40d50ee..0000000
--- a/src/tesseract/objects/Physical.java
+++ /dev/null
@@ -1,23 +0,0 @@
-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();
-
- /**
- * Set the object's position.
- *
- * @param position The new position.
- */
- void setPosition(Vector3f position);
-}