浏览代码

Update hello_simpleapplication.adoc

mitm001 8 年之前
父节点
当前提交
d94e0fa5d6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/docs/asciidoc/jme3/beginner/hello_simpleapplication.adoc

+ 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