Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
textlabel.qc
Go to the documentation of this file.
1#include "textlabel.qh"
2
3entity makeXonoticTextLabel(float theAlign, string theText)
4{
6 me.configureLabel(me, theText, me.fontSize, theAlign);
7 return me;
8}
10{
11 entity me = makeXonoticTextLabel(0.5, theText);
12 me.colorL = SKINCOLOR_HEADER;
13 me.alpha = SKINALPHA_HEADER;
14 me.isBold = true;
15 return me;
16}
17
19{
20 SUPER(XonoticTextLabel).draw(me);
21}
var entity(vector mins, vector maxs,.entity tofield) findbox_tofield_OrFallback
#define NEW(cname,...)
Definition oo.qh:117
#define SUPER(cname)
Definition oo.qh:231
entity makeXonoticTextLabel(float theAlign, string theText)
Definition textlabel.qc:3
void XonoticTextLabel_draw(entity me)
Definition textlabel.qc:18
entity makeXonoticHeaderLabel(string theText)
Definition textlabel.qc:9