]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/wepent.qh
Merge branch 'master' into Mario/wepent_experimental
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / wepent.qh
1 #pragma once
2
3 REGISTER_NET_LINKED(ENT_CLIENT_WEPENT)
4 REGISTER_NET_TEMP(CLIENT_WEPENT)
5
6 .float vortex_charge;
7
8 #ifdef SVQC
9
10         bool wepent_send(entity this, entity to, int sf);
11
12         void wepent_update(entity this);
13
14         void wepent_link(entity wep);
15
16         .int m_forceupdate;
17
18         .Weapon m_switchweapon;
19         .Weapon m_weapon;
20         .Weapon m_switchingweapon;
21
22 #endif
23
24 #ifdef CSQC
25         .int m_wepent_slot;
26
27         .Weapon activeweapon;
28         .Weapon switchingweapon;
29         .Weapon switchweapon;
30 #endif