12 lines
377 B
C++
12 lines
377 B
C++
|
|
#include "netstartwindow.h"
|
|
#include "version.h"
|
|
|
|
NetStartWindow::NetStartWindow() : Widget(nullptr, WidgetType::Window)
|
|
{
|
|
SetWindowBackground(Colorf::fromRgba8(51, 51, 51));
|
|
SetWindowBorderColor(Colorf::fromRgba8(51, 51, 51));
|
|
SetWindowCaptionColor(Colorf::fromRgba8(33, 33, 33));
|
|
SetWindowCaptionTextColor(Colorf::fromRgba8(226, 223, 219));
|
|
SetWindowTitle(GAMENAME);
|
|
}
|