| 4 | namespace Star { |
| 5 | |
| 6 | VoiceSettingsMenu::VoiceSettingsMenu(Json const& config) : BaseScriptPane(config) { |
| 7 | m_script.setLuaRoot(make_shared<LuaRoot>()); |
| 8 | m_script.addCallbacks("voice", LuaBindings::makeVoiceCallbacks()); |
| 9 | } |
| 10 | |
| 11 | void VoiceSettingsMenu::show() { |
| 12 | BaseScriptPane::show(); |
nothing calls this directly
no test coverage detected