25 lines
375 B
C++
25 lines
375 B
C++
|
#ifndef STAR_VOICE_SETTINGS_MENU_HPP
|
||
|
#define STAR_VOICE_SETTINGS_MENU_HPP
|
||
|
|
||
|
#include "StarBaseScriptPane.hpp"
|
||
|
|
||
|
namespace Star {
|
||
|
|
||
|
STAR_CLASS(VoiceSettingsMenu);
|
||
|
|
||
|
class VoiceSettingsMenu : public BaseScriptPane {
|
||
|
public:
|
||
|
VoiceSettingsMenu(Json const& config);
|
||
|
|
||
|
virtual void show() override;
|
||
|
void displayed() override;
|
||
|
void dismissed() override;
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|