]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/dialog_multiplayer_create.qh
Update default video settings
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / dialog_multiplayer_create.qh
1 #pragma once
2
3 #include "tab.qh"
4 CLASS(XonoticServerCreateTab, XonoticTab)
5         METHOD(XonoticServerCreateTab, fill, void(entity));
6         METHOD(XonoticServerCreateTab, gameTypeChangeNotify, void(entity));
7         METHOD(XonoticServerCreateTab, gameTypeSelectNotify, void(entity));
8         ATTRIB(XonoticServerCreateTab, intendedWidth, float, 0.9);
9         ATTRIB(XonoticServerCreateTab, rows, float, 23);
10         ATTRIB(XonoticServerCreateTab, columns, float, 6.2);  // added extra .2 for center space
11
12         ATTRIB(XonoticServerCreateTab, mapListBox, entity);
13         ATTRIB(XonoticServerCreateTab, sliderFraglimit, entity);
14         ATTRIB(XonoticServerCreateTab, sliderTeams, entity);
15         ATTRIB(XonoticServerCreateTab, sliderTimelimit, entity);
16         ATTRIB(XonoticServerCreateTab, labelFraglimit, entity);
17         ATTRIB(XonoticServerCreateTab, labelTeams, entity);
18 ENDCLASS(XonoticServerCreateTab)
19 entity makeXonoticServerCreateTab();