quakeforge/tools/qfcc/test/old/fold.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
207 B
R

float FL_MONSTER = 32;
float FL_FLY = 1;
float FL_SWIM = 2;
.integer flags;
void (entity other)
trigger_monsterjump_touch =
{
if ((other.flags & (FL_MONSTER | FL_FLY | FL_SWIM)) != FL_MONSTER)
return;
};