mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
10 lines
124 B
R
10 lines
124 B
R
|
.float x;
|
||
|
.vector v;
|
||
|
.void (float y) func;
|
||
|
|
||
|
void (entity ent) foo =
|
||
|
{
|
||
|
ent.x = ent.v * ent.v;
|
||
|
ent.func (ent.v * ent.v);
|
||
|
};
|