소스 검색

Fixed template code for pasting

mitm001 8 년 전
부모
커밋
0c980d05c4
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  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;
 
 /**