Browse Source

Fixed formating error for BaseAppState

mitm001 8 năm trước cách đây
mục cha
commit
5be10aba52
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      src/docs/asciidoc/jme3/advanced/application_states.adoc

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

@@ -197,7 +197,8 @@ Definition:
 [source,java]
 ----
 public class MyBaseAppState extends BaseAppState {        
-    @Override    protected void initialize(Application app) {        
+    @Override    
+    protected void initialize(Application app) {        
         //It is technically safe to do all initialization and cleanup in the         
         //onEnable()/onDisable() methods. Choosing to use initialize() and         
         //cleanup() for this is a matter of performance specifics for the