mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
14 lines
205 B
C++
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
|