aboutsummaryrefslogtreecommitdiff
path: root/engine/src/core/com/jme3/export/FormatVersion.java
blob: 843248d944d45d918aa7c1d3e0fb642d0daaff6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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(){
    }
}