1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-10-15 12:26:43 +00:00
openmw-tes3mp/apps/openmw/mwmp/GUI/GUILogin.cpp
2017-06-07 00:06:10 +08:00

22 lines
391 B
C++

//
// Created by koncord on 19.05.16.
//
#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");
}