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