0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-02-25 21:21:14 +00:00
quakeforge/ruamoko/game/GameEntity.r

23 lines
326 B
R
Raw Normal View History

#include "GameEntity.h"
.vector angles;
.float modelindex;
.float movetype;
.string model;
.float frame;
.float colormap;
.vector mins;
.vector maxs;
.vector velocity;
.vector origin;
.float flags;
.vector v_angle;
@implementation GameEntity
- (BOOL) takeDamage: weapon : inflictor : attacker : damage
{
return NO;
}
@end