mirror of https://github.com/bsnes-emu/bsnes.git
18 lines
284 B
C++
18 lines
284 B
C++
|
#if defined(Hiro_MenuRadioItem)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pMenuRadioItem : pAction {
|
||
|
Declare(MenuRadioItem, Action)
|
||
|
|
||
|
auto setChecked() -> void;
|
||
|
auto setGroup(sGroup group) -> void override;
|
||
|
auto setText(const string& text) -> void;
|
||
|
|
||
|
auto onActivate() -> void;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|