summaryrefslogtreecommitdiff
path: root/src/tesseract/objects/Physical.java
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2011-02-11 18:53:32 +0000
committerJesse Morgan <jesse@jesterpm.net>2011-02-11 18:53:32 +0000
commit354041e8d61571b25c6eeb672537a013d3e0fa60 (patch)
tree0ddd07f6fa6867148e3e8c75155c10a238ccd42c /src/tesseract/objects/Physical.java
parent39662ca98a4ea3de28d5ef4c113435d591ec471c (diff)
Broke the grabbing code but added Alden's collision code. Not sure if its working yet since my Mac doesn't like it.
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);
-}