aboutsummaryrefslogtreecommitdiff
path: root/engine/src/core/com/jme3/export/FormatVersion.java
diff options
context:
space:
mode:
authorScott Barta <sbarta@google.com>2012-03-01 12:35:35 -0800
committerScott Barta <sbarta@google.com>2012-03-01 12:40:08 -0800
commit59b2e6871c65f58fdad78cd7229c292f6a177578 (patch)
tree2d4e7bfc05b93f40b34675d77e403dd1c25efafd /engine/src/core/com/jme3/export/FormatVersion.java
parentf9b30489e75ac1eabc365064959804e99534f7ab (diff)
downloadjmonkeyengine-59b2e6871c65f58fdad78cd7229c292f6a177578.tar.gz
Adds the jMonkeyEngine library to the build.
Adds the jMonkeyEngine open source 3D game engine to the build. This is built as a static library and is only used by the Finsky client. Change-Id: I06a3f054df7b8a67757267d884854f70c5a16ca0
Diffstat (limited to 'engine/src/core/com/jme3/export/FormatVersion.java')
-rw-r--r--engine/src/core/com/jme3/export/FormatVersion.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/engine/src/core/com/jme3/export/FormatVersion.java b/engine/src/core/com/jme3/export/FormatVersion.java
new file mode 100644
index 0000000..843248d
--- /dev/null
+++ b/engine/src/core/com/jme3/export/FormatVersion.java
@@ -0,0 +1,22 @@
+package com.jme3.export;
+
+/**
+ * Specifies the version of the format for jME3 object (j3o) files.
+ *
+ * @author Kirill Vainer
+ */
+public final class FormatVersion {
+
+ /**
+ * Version number of the format
+ */
+ public static final int VERSION = 2;
+
+ /**
+ * Signature of the format. Currently "JME3" as ASCII
+ */
+ public static final int SIGNATURE = 0x4A4D4533;
+
+ private FormatVersion(){
+ }
+}