ソースを参照

Update hello_simpleapplication.adoc

mitm001 8 年 前
コミット
d94e0fa5d6

+ 1 - 1
src/docs/asciidoc/jme3/beginner/hello_simpleapplication.adoc

@@ -265,7 +265,7 @@ public class MyGame extends SimpleApplication {
 
 Then have all logic implemented in <<jme3/advanced/application_states#,AppStates>> and your SimpleApplication will never change much, except when you want to add a bootstrap AppState (or maybe you can have an AppState that manages AppStates...), SimpleApplication is just the list of states you are using.
 
-In future version, all the code in SimpleApplication will be refactored in AppStates (InputHandlingState, RenderAppState, whatever) and you will decide what you want to use. However, for legacy sake we kept the code as is for now.
+In future versions, all the code in SimpleApplication will be refactored in AppStates (InputHandlingState, RenderAppState, whatever) and you will decide what you want to use. However, for legacy sake we kept the code as is for now.
 
 
 == Conclusion