mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-10-15 12:26:43 +00:00
22 lines
391 B
C++
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");
|
|
|
|
}
|