mirror of https://github.com/bsnes-emu/bsnes.git
15 lines
312 B
C++
15 lines
312 B
C++
namespace hiro {
|
|
|
|
struct pStatusBar : pObject {
|
|
Declare(StatusBar, Object)
|
|
|
|
auto setEnabled(bool enabled) -> void override;
|
|
auto setFont(const string& font) -> void override;
|
|
auto setText(const string& text) -> void;
|
|
auto setVisible(bool visible) -> void override;
|
|
|
|
auto _parent() -> pWindow*;
|
|
};
|
|
|
|
}
|