]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/weapons/projectile.qh
Remove useless title attribute (and related attributes) from the tab class, the tab...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / weapons / projectile.qh
1 #ifndef PROJECTILE_H
2 #define PROJECTILE_H
3
4 .int traileffect;
5
6 .vector iorigin1, iorigin2;
7 .float spawntime;
8 .vector trail_oldorigin;
9 .float trail_oldtime;
10 .float fade_time, fade_rate;
11
12 .float alphamod;
13 .int count; // set if clientside projectile
14 .int cnt; // sound index
15 .float gravity;
16 .int snd_looping;
17 .bool silent;
18
19 void SUB_Stop();
20
21 void Projectile_ResetTrail(vector to);
22
23 void Projectile_DrawTrail(vector to);
24
25 void Projectile_Draw();
26
27 void loopsound(entity e, int ch, string samp, float vol, float attn);
28
29 void Ent_RemoveProjectile();
30
31 void Ent_Projectile();
32
33 void Projectile_Precache();
34
35 #endif