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

Go to the source code of this file.

Classes

class  XonoticTextSlider

Functions

entity makeXonoticTextSlider (string)
entity makeXonoticTextSlider_T (string, string theTooltip)

Function Documentation

◆ makeXonoticTextSlider()

entity makeXonoticTextSlider ( string theCvar)

Definition at line 10 of file textslider.qc.

11{
12 return makeXonoticTextSlider_T(theCvar, string_null);
13}
string string_null
Definition nil.qh:9
entity makeXonoticTextSlider_T(string theCvar, string theTooltip)
Definition textslider.qc:3

◆ makeXonoticTextSlider_T()

entity makeXonoticTextSlider_T ( string theCvar,
string theTooltip )

Definition at line 3 of file textslider.qc.

4{
5 entity me;
7 me.configureXonoticTextSlider(me, theCvar, theTooltip);
8 return me;
9}
var entity(vector mins, vector maxs,.entity tofield) findbox_tofield_OrFallback
#define NEW(cname,...)
Definition oo.qh:117

References entity(), and NEW.

Referenced by makeXonoticTextSlider().