Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
dialog_multiplayer.qc File Reference
Include dependency graph for dialog_multiplayer.qc:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void XonoticMultiplayerDialog_fill (entity me)

Function Documentation

◆ XonoticMultiplayerDialog_fill()

void XonoticMultiplayerDialog_fill ( entity me)

Definition at line 8 of file dialog_multiplayer.qc.

9{
10 entity mc, e;
11 mc = makeXonoticTabController(me.rows - 1);
12 me.TR(me);
13 me.TD(me, 1, 4/3, e = mc.makeTabButton_T(mc, _("Servers"), makeXonoticServerListTab(),
14 _("Find servers to play on")));
15 me.TD(me, 1, 4/3, e = mc.makeTabButton_T(mc, _("Create"), makeXonoticServerCreateTab(),
16 _("Host your own game")));
17 me.TD(me, 1, 4/3, e = mc.makeTabButton(mc, _("Profile"), makeXonoticProfileTab()));
18
19 me.TR(me);
20 me.TD(me, me.rows - 1, me.columns, mc);
21}
var entity(vector mins, vector maxs,.entity tofield) findbox_tofield_OrFallback
entity makeXonoticServerCreateTab()
entity makeXonoticServerListTab()
entity makeXonoticProfileTab()
entity makeXonoticTabController(float theRows)

References entity(), makeXonoticProfileTab(), makeXonoticServerCreateTab(), makeXonoticServerListTab(), and makeXonoticTabController().