Xonotic
textlabel.qh
Go to the documentation of this file.
1 #pragma once
2 
3 #include "../item/label.qh"
5  METHOD(XonoticTextLabel, configureXonoticTextLabel, void(entity, float, string));
6  METHOD(XonoticTextLabel, draw, void(entity));
7  ATTRIB(XonoticTextLabel, fontSize, float, SKINFONTSIZE_NORMAL);
8  ATTRIB(XonoticTextLabel, alpha, float, SKINALPHA_TEXT);
9  ATTRIB(XonoticTextLabel, disabledAlpha, float, SKINALPHA_DISABLED);
11 entity makeXonoticTextLabel(float theAlign, string theText);
12 entity makeXonoticHeaderLabel(string theText);
float alpha
Definition: items.qc:14
entity makeXonoticHeaderLabel(string theText)
Definition: textlabel.qc:10
CLASS(Object) Object
Definition: oo.qh:318
entity() spawn
#define METHOD(cname, name, prototype)
Definition: oo.qh:257
#define ATTRIB(...)
Definition: oo.qh:136
entity makeXonoticTextLabel(float theAlign, string theText)
Definition: textlabel.qc:3
Definition: label.qh:4
#define ENDCLASS(cname)
Definition: oo.qh:269