| 615 | } |
| 616 | |
| 617 | void SampleApp::startScripting() |
| 618 | { |
| 619 | auto bindFunc = [this](pybind11::module& m) { this->registerScriptBindings(m); }; |
| 620 | ScriptBindings::registerBinding(bindFunc); |
| 621 | Scripting::start(); |
| 622 | } |
| 623 | |
| 624 | void SampleApp::registerScriptBindings(pybind11::module& m) |
| 625 | { |
nothing calls this directly
no test coverage detected