Xonotic
inputbox.qh File Reference
+ Include dependency graph for inputbox.qh:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  XonoticInputBox
 

Functions

entity makeXonoticInputBox (float, string)
 
entity makeXonoticInputBox_T (float, string, string theTooltip)
 

Function Documentation

◆ makeXonoticInputBox()

entity makeXonoticInputBox ( float  ,
string   
)

Definition at line 10 of file inputbox.qc.

References makeXonoticInputBox_T(), and string_null.

11 {
12  return makeXonoticInputBox_T(doEditColorCodes, theCvar, string_null);
13 }
string string_null
Definition: nil.qh:9
entity makeXonoticInputBox_T(float doEditColorCodes, string theCvar, string theTooltip)
Definition: inputbox.qc:3
+ Here is the call graph for this function:

◆ makeXonoticInputBox_T()

entity makeXonoticInputBox_T ( float  ,
string  ,
string  theTooltip 
)

Definition at line 3 of file inputbox.qc.

References entity(), and NEW.

Referenced by makeXonoticInputBox().

4 {
5  entity me;
6  me = NEW(XonoticInputBox);
7  me.configureXonoticInputBox(me, doEditColorCodes, theCvar, theTooltip);
8  return me;
9 }
#define NEW(cname,...)
Definition: oo.qh:105
entity() spawn
+ Here is the call graph for this function:
+ Here is the caller graph for this function: