bsnes-mt/hiro/gtk/action/menu-item.hpp
2020-06-02 20:53:45 +03:00

14 lines
205 B
C++

#if defined(Hiro_MenuItem)
namespace hiro {
struct pMenuItem : pAction {
Declare(MenuItem, Action)
auto setIcon(const image& icon) -> void;
auto setText(const string& text) -> void;
};
}
#endif