diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2011-03-09 03:25:52 +0000 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2011-03-09 03:25:52 +0000 |
commit | e3ee5607f0ec853a26851afde553019817c9d1b4 (patch) | |
tree | 9b7c8c628ead63133054c6c02a193c22f3aa9126 /src/common/Box.java | |
parent | a828212689f4601efaaad93aaad20c632d92da4c (diff) |
Added serial uids
Diffstat (limited to 'src/common/Box.java')
-rw-r--r-- | src/common/Box.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/Box.java b/src/common/Box.java index 5864606..2e7fba2 100644 --- a/src/common/Box.java +++ b/src/common/Box.java @@ -5,6 +5,11 @@ import javax.vecmath.*; @SuppressWarnings("restriction")
public class Box extends CollidableObject {
+ /**
+ *
+ */
+ private static final long serialVersionUID = 1261388841430590087L;
+
public Box(float width, float height, float depth, Vector3f position) {
this(1, width, height, depth, position);
}
|