mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
bbaaaae81c
of qfcc. doesn't do much yet.
21 lines
316 B
R
21 lines
316 B
R
#include "gameent.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
|