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