0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-12 12:21:54 +00:00
quakeforge/tools/qfcc/test/old/vector2.r

14 lines
124 B
R
Raw Normal View History

vector a;
entity e;
.vector v;
float foo (void)
{
a.z += 3;
a_z += 3;
e.v = a;
e.v.y = 2;
e.v_y = 2;
return e.v.z;
}