]> icculus.org git repositories - divverent/nexuiz.git/blob - data/menuqc/base/cursor.qh
Revert first change in the trunk.
[divverent/nexuiz.git] / data / menuqc / base / cursor.qh
1 // NG Menu
2 // cursor qh
3
4 const string    CURSOR_PATH             = "gfx/cursor"; //"ui/mousepointer.tga";
5
6 string Cursor_Current;
7 var void() Cursor_Animation = __NULL__;
8
9 vector Cursor_Relative;
10 vector Cursor_Position;
11 vector Cursor_Speed     = '1 1 0';
12
13 vector Cursor_Position; // will be adjusted to be in the current origin
14
15 float   Cursor_Transparency     = 1.0;
16 vector  Cursor_Color            = '1.0 1.0 1.0';
17 float   Cursor_Scale            = 1.0;
18 float   Cursor_Flag             = 0;
19 // center of the cursor
20 vector  Cursor_Offset           = '0 0 0';
21
22 void() Cursor_Init;
23 void() Cursor_Quit;
24
25 void() Cursor_Display;
26 void() Cursor_Hide;
27
28 void() Cursor_Draw;
29 void() Cursor_Update;
30
31 void() Cursor_DefaultAnimation;
32
33 void( vector pRelPos, string pText, vector pScale, vector pColor, float pAlpha, float pDrawFlag ) Cursor_PrintInfo;