mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
344 B
C++
Executable File
16 lines
344 B
C++
Executable File
struct PropertiesViewer : Window {
|
|
VerticalLayout layout;
|
|
HorizontalLayout controlLayout;
|
|
Label sourceLabel;
|
|
ComboBox sourceSelection;
|
|
Widget spacer;
|
|
CheckBox autoUpdate;
|
|
Button update;
|
|
TextEdit properties;
|
|
|
|
void updateProperties();
|
|
PropertiesViewer();
|
|
};
|
|
|
|
extern PropertiesViewer *propertiesViewer;
|