bsnes/hiro/windows/action/menu-check-item.hpp

17 lines
246 B
C++

#if defined(Hiro_MenuCheckItem)
namespace hiro {
struct pMenuCheckItem : pAction {
Declare(MenuCheckItem, Action)
auto setChecked(bool checked) -> void;
auto setText(const string& text) -> void;
auto onToggle() -> void;
};
}
#endif