mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
9 lines
114 B
R
9 lines
114 B
R
void foo (vector x)
|
|
{
|
|
entity *ep;
|
|
int d;
|
|
|
|
//d = (int) x.y;
|
|
//ep = (entity *) d;
|
|
ep = (entity *) (int) x.y;
|
|
}
|