Jelajahi Sumber

Fixed template code for pasting

mitm001 8 tahun lalu
induk
melakukan
0c980d05c4
1 mengubah file dengan 6 tambahan dan 2 penghapusan
  1. 6 2
      src/docs/asciidoc/jme3/advanced/application_states.adoc

+ 6 - 2
src/docs/asciidoc/jme3/advanced/application_states.adoc

@@ -296,8 +296,12 @@ If you use the jme SDK you can add the following template to make adding BaseApp
 <#assign licenseLast = " */">
 <#include "../Licenses/license-${project.license}.txt">
 
-<#if package?? && package != "">package ${package};
-</#if>import com.jme3.app.Application;import com.jme3.app.state.BaseAppState;
+<#if package?? && package != "">
+package ${package};
+
+</#if>
+import com.jme3.app.Application;
+import com.jme3.app.state.BaseAppState;
 
 /**