Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
damagedata.c
Go to the documentation of this file.
2{
6
7 void DamageData(float value_global, float value_blood, float value_shock)
8 {
9 m_ValueGlobal = value_global;
10 m_ValueBlood = value_blood;
11 m_ValueShock = value_shock;
12 }
13
15 {
16 return m_ValueGlobal;
17 }
18
20 {
21 return m_ValueShock;
22 }
23
25 {
26 return m_ValueBlood;
27 }
28
29
30}
void DamageData(float value_global, float value_blood, float value_shock)
Definition damagedata.c:7
float m_ValueBlood
Definition damagedata.c:4
float GetValueShock()
Definition damagedata.c:19
float m_ValueGlobal
Definition damagedata.c:3
float m_ValueShock
Definition damagedata.c:5
float GetValueBlood()
Definition damagedata.c:24
float GetValueGlobal()
Definition damagedata.c:14