| 229 | } |
| 230 | |
| 231 | void Engine::init() |
| 232 | { |
| 233 | this->initConfig(); |
| 234 | this->initLogger(); |
| 235 | this->initScript(); |
| 236 | this->initTriggers(); |
| 237 | this->initInput(); |
| 238 | this->initWindow(); |
| 239 | this->initCursor(); |
| 240 | this->initFramerate(); |
| 241 | this->initPlugins(); |
| 242 | this->initResources(); |
| 243 | this->initScene(); |
| 244 | m_initialized = true; |
| 245 | } |
| 246 | |
| 247 | void Engine::run() |
| 248 | { |
no test coverage detected