Forráskód Böngészése

Fixed formating error for BaseAppState

mitm001 8 éve
szülő
commit
5be10aba52

+ 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