0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-04-14 13:21:43 +00:00
quakeforge/tools/qfcc/test/old/value.r

17 lines
210 B
R
Raw Permalink Normal View History

2011-03-22 06:00:46 +00:00
float VAL1 = 4;
float VAL2 = 6;
vector VMIN = '-16 -16 -24';
vector VMAX = '16 16 32';
vector v;
2011-03-22 06:00:46 +00:00
void send (float to, ...) = #0;
void do_something ()
{
vector a;
a = VMIN;
a = VMAX;
2011-03-22 06:00:46 +00:00
send (VAL1, VAL2);
}