mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
313 B
C++
16 lines
313 B
C++
|
struct ScoreSettings : SettingsLayout {
|
||
|
Label title;
|
||
|
HorizontalLayout serverLayout;
|
||
|
Label hostLabel;
|
||
|
LineEdit hostEdit;
|
||
|
HorizontalLayout loginLayout;
|
||
|
Label userLabel;
|
||
|
LineEdit userEdit;
|
||
|
Label passLabel;
|
||
|
LineEdit passEdit;
|
||
|
|
||
|
ScoreSettings();
|
||
|
};
|
||
|
|
||
|
extern ScoreSettings *scoreSettings;
|