mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
22 lines
331 B
R
22 lines
331 B
R
#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 : (float)damage
|
|
{
|
|
return NO;
|
|
}
|
|
@end
|