mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
11 lines
488 B
C
11 lines
488 B
C
|
#ifndef __options_util_h
|
||
|
#define __options_util_h
|
||
|
|
||
|
@extern void (integer x, integer y) opt_cursor;
|
||
|
@extern void (integer x, integer y, integer spacing, string spacechar, string label, string valstr) draw_item;
|
||
|
@extern void (integer x, integer y, integer spacing, string label, string valstr) draw_val_item;
|
||
|
@extern integer (float min, float max, float val) to_percentage;
|
||
|
@extern float (float min, float max, float step, float val, integer cntflag) min_max_cnt;
|
||
|
|
||
|
#endif//__options_util_h
|