mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-18 18:51:53 +00:00
10 lines
111 B
R
10 lines
111 B
R
|
float VAL1 = 4;
|
||
|
float VAL2 = 6;
|
||
|
|
||
|
void send (float to, ...) = #0;
|
||
|
|
||
|
void do_something ()
|
||
|
{
|
||
|
send (VAL1, VAL2);
|
||
|
}
|