]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/effects/qc/damageeffects.qh
Transifex autosync
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / effects / qc / damageeffects.qh
1 #pragma once
2
3 #ifdef CSQC
4 #include <common/deathtypes/all.qh>
5 #include <common/physics/movetypes/movetypes.qh>
6 #include <client/mutators/_mod.qh>
7 #include <common/vehicles/all.qh>
8 #include <common/weapons/_all.qh>
9
10 int w_deathtype;
11 float w_issilent, w_random;
12 vector w_org, w_backoff;
13
14 .float damageforcescale;
15 const float MIN_DAMAGEEXTRARADIUS = 2;
16 const float MAX_DAMAGEEXTRARADIUS = 16;
17 .float damageextraradius;
18 .void(entity this, float thisdmg, int hittype, vector org, vector thisforce) event_damage;
19 #endif