]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/weapons/projectile.qh
Merge branch 'master' into terencehill/min_spec_time
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / weapons / projectile.qh
1 #pragma once
2
3 #include <common/sounds/sound.qh>
4
5 entityclass(Projectile);
6 classfield(Projectile).int traileffect;
7
8 classfield(Projectile).vector iorigin1, iorigin2;
9 classfield(Projectile).float spawntime;
10 classfield(Projectile).vector trail_oldorigin;
11 classfield(Projectile).float trail_oldtime;
12 classfield(Projectile).float fade_time, fade_rate;
13
14 classfield(Projectile).float alphamod;
15 classfield(Projectile).int count; // set if clientside projectile
16 classfield(Projectile).int cnt;   // sound index
17 classfield(Projectile).float gravity;
18 classfield(Projectile).int snd_looping;
19 classfield(Projectile).bool silent;
20
21 void SUB_Stop(entity this, entity toucher);
22
23 void Projectile_ResetTrail(entity this, vector to);
24
25 void Projectile_DrawTrail(entity this, vector to);
26
27 void Projectile_Draw(entity this);
28
29 void loopsound(entity e, int ch, Sound samp, float vol, float attn);
30
31 void Ent_RemoveProjectile(entity this);
32
33 const int FL_PROJECTILE = BIT(15);