| 26 | : SceneLoadingTutorialApplication(NAME,FEATURES) {} |
| 27 | |
| 28 | void postParseCommandLine() override |
| 29 | { |
| 30 | /* load default scene if none specified */ |
| 31 | if (scene_empty_post_parse()) { |
| 32 | FileName file = FileName::executableFolder() + FileName("models/furBall_A.ecs"); |
| 33 | parseCommandLine(new ParseStream(new LineCommentFilter(file, "#")), file.path()); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | }; |
| 38 |
nothing calls this directly
no test coverage detected