mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-10-04 19:56:30 +00:00
18 lines
349 B
C++
18 lines
349 B
C++
#include "GUILogin.hpp"
|
|
#include <MyGUI_EditBox.h>
|
|
#include <MyGUI_Button.h>
|
|
|
|
|
|
GUILogin::GUILogin() : WindowModal("tes3mp_login.layout")
|
|
{
|
|
center(); // center window
|
|
|
|
setVisible(false);
|
|
|
|
|
|
getWidget(mLogin, "EditLogin");
|
|
getWidget(mServer, "EditServer");
|
|
getWidget(mPort, "EditPort");
|
|
getWidget(mConnect, "ButtonConnect");
|
|
|
|
}
|