quakeforge/tools/qfcc/test/old/local-func.r
Bill Currie 49ca09a64f Clean up qfcc's test directory.
I don't remember what half these tests were for :/
2012-11-22 21:58:52 +09:00

10 lines
180 B
R

.float () th_takeitem;
void (entity e1, entity e2)
_override_swap =
{
local float () t_f_v;
t_f_v = e1.th_takeitem;
e1.th_takeitem = e2.th_takeitem;
e2.th_takeitem = t_f_v;
}