mitm001 il y a 5 ans
Parent
commit
8b0be65d90

+ 1 - 1
docs/modules/ROOT/pages/jme3/intermediate/simpleapplication.adoc

@@ -14,7 +14,7 @@ SimpleApplication gives you access to standard game features, such as a scene gr
 For each game, you (directly or indirectly) extend SimpleApplication exactly once as the central class. If you need access to any SimpleApplication features from another game class, make the other class extend xref:jme3/advanced/application_states.adoc[AbstractAppState] (don't extend SimpleApplication once more).
 ====
 
-NOTE: The SimpleApplication class is undergoing changes. To understand how these changes may affect your projects and how to best prepare for them, see  xref:jme3/beginner/hello_simpleapplication.adoc#the-future-of-simpleapplication.adoc[The Future of SimpleApplication] topic in the "`Hello SimpleApplication`" tutorial for beginners.
+NOTE: The SimpleApplication class is undergoing changes. To understand how these changes may affect your projects and how to best prepare for them, see  xref:tutorials:beginner/hello_simpleapplication.adoc#the-future-of-simpleapplication[The Future of SimpleApplication] topic in the "`Hello SimpleApplication`" tutorial for beginners.
 
 The following code sample shows the typical base structure of a jME3 game: