git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@356 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
TimeServ 2004-10-19 18:56:13 +00:00
parent dff7e8bc0f
commit 0524b0115a
1 changed files with 1 additions and 3 deletions

View File

@ -192,11 +192,9 @@ void MediaSW_ShowFrameBGR_24_Flip(qbyte *framedata, int inwidth, int inheight);
void R_ParseParticleEffect (void);
void R_RunParticleEffect (vec3_t org, vec3_t dir, int color, int count);
typedef struct beamseg_s beamseg_t;
typedef struct {
float lastdist;
beamseg_t *lastbeam; // last beam point
struct beamseg_s *lastbeam; // last beam point
} trailstate_t;
void R_RocketTrail (vec3_t start, vec3_t end, int type, trailstate_t *oldpoint);
int R_RunParticleEffectType(vec3_t org, vec3_t dir, float count, int type);