Home | History | Annotate | Download | only in export
      1 package com.jme3.export;
      2 
      3 /**
      4  * Specifies the version of the format for jME3 object (j3o) files.
      5  *
      6  * @author Kirill Vainer
      7  */
      8 public final class FormatVersion {
      9 
     10     /**
     11      * Version number of the format
     12      */
     13     public static final int VERSION = 2;
     14 
     15     /**
     16      * Signature of the format. Currently "JME3" as ASCII
     17      */
     18     public static final int SIGNATURE = 0x4A4D4533;
     19 
     20     private FormatVersion(){
     21     }
     22 }
     23