blob: 843248d944d45d918aa7c1d3e0fb642d0daaff6f [file] [log] [blame]
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(){
}
}