]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/particles.qh
a70aef86d703752b3e42b98e393558c64e9e3fed
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / particles.qh
1 #ifndef PARTICLES_H
2 #define PARTICLES_H
3 .int dphitcontentsmask;
4
5 .int cnt; // effect number
6 .vector velocity; // particle velocity
7 .float waterlevel; // direction jitter
8 .int count; // count multiplier
9 .int impulse; // density
10 .string noise; // sound
11 .float atten;
12 .float volume;
13 .float absolute; // 1 = count per second is absolute, 2 = only spawn at toggle
14 .vector movedir; // trace direction
15
16 .float glow_color; // palette index
17
18 void Net_ReadVortexBeamParticle();
19 #endif