You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3coop/apps/openmw/mwmp/GUILogin.cpp

22 lines
390 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");
}