Sfoglia il codice sorgente

Fixed formating error for BaseAppState

mitm001 8 anni fa
parent
commit
5be10aba52
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  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