| 91 | } |
| 92 | |
| 93 | void Application::StartAppScript() { |
| 94 | LuaCpp::Selector startFunc = sandbox["start"]; |
| 95 | if (startFunc.IsFunction()) { |
| 96 | startFunc(); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | void Application::OnApplicationResize(int width, int height) { |
| 101 | if (gameWorld) { |
no test coverage detected