| 123456789101112131415161718192021222324252627 |
- function Start()
- require("CSharpLua.Classloader")
- require("ETTask")
- require("CustomAttribute")
- require("Model.manifest")("Model")
- require("ModelView.manifest")("ModelView")
- require("Hotfix.manifest")("Hotfix")
- require("HotfixView.manifest")("HotfixView")
-
- print("1111111111111111111111")
- ET.GameStart.Start()
- end
- function Update()
- ET.Game.Update()
- end
- function LateUpdate()
- ET.Game.LateUpdate()
- end
- function OnApplicationQuit()
- ET.Game.Close()
- end
- return Start
|