diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2011-02-11 03:45:01 +0000 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2011-02-11 03:45:01 +0000 |
commit | 14dcf5b2488c4429e50f76e6cef339cac2653430 (patch) | |
tree | a8fbec11d52e74ac4b0b9dc2cb5377d3c36fc240 /src/tesseract/objects/Physical.java | |
parent | 418587987e3b424667db57bd1aec30178448a72a (diff) |
Some of the grabbing code.
Diffstat (limited to 'src/tesseract/objects/Physical.java')
-rw-r--r-- | src/tesseract/objects/Physical.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tesseract/objects/Physical.java b/src/tesseract/objects/Physical.java index abf8c0f..40d50ee 100644 --- a/src/tesseract/objects/Physical.java +++ b/src/tesseract/objects/Physical.java @@ -13,4 +13,11 @@ 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); } |