diff options
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);
}
|