]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/dialog_multiplayer_join_serverinfotab.qh
Merge branch 'bones_was_here/matchid_eventlog' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / dialog_multiplayer_join_serverinfotab.qh
1 #pragma once
2
3 #include "tab.qh"
4 CLASS(XonoticServerInfoTab, XonoticTab)
5         METHOD(XonoticServerInfoTab, fill, void(entity));
6         ATTRIB(XonoticServerInfoTab, title, string, _("Server Information"));
7         ATTRIB(XonoticServerInfoTab, color, vector, SKINCOLOR_DIALOG_SERVERINFO);
8         ATTRIB(XonoticServerInfoTab, intendedWidth, float, 0.8);
9         ATTRIB(XonoticServerInfoTab, rows, float, 17);
10         ATTRIB(XonoticServerInfoTab, columns, float, 6.2);
11
12         ATTRIB(XonoticServerInfoTab, nameLabel, entity);
13         ATTRIB(XonoticServerInfoTab, cnameLabel, entity);
14         ATTRIB(XonoticServerInfoTab, typeLabel, entity);
15         ATTRIB(XonoticServerInfoTab, mapLabel, entity);
16         ATTRIB(XonoticServerInfoTab, rawPlayerList, entity);
17         ATTRIB(XonoticServerInfoTab, numPlayersLabel, entity);
18         ATTRIB(XonoticServerInfoTab, numBotsLabel, entity);
19         ATTRIB(XonoticServerInfoTab, numFreeSlotsLabel, entity);
20         ATTRIB(XonoticServerInfoTab, modLabel, entity);
21         ATTRIB(XonoticServerInfoTab, versionLabel, entity);
22         ATTRIB(XonoticServerInfoTab, keyLabel, entity);
23         ATTRIB(XonoticServerInfoTab, idLabel, entity);
24         ATTRIB(XonoticServerInfoTab, encryptLabel, entity);
25         ATTRIB(XonoticServerInfoTab, canConnectLabel, entity);
26         ATTRIB(XonoticServerInfoTab, pureLabel, entity);
27         ATTRIB(XonoticServerInfoTab, statsLabel, entity);
28 ENDCLASS(XonoticServerInfoTab)
29 entity makeXonoticServerInfoTab();
30