Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
damagedata.c
Go to the documentation of this file.
1 class DamageData
2 {
3  float m_ValueGlobal;
4  float m_ValueBlood;
5  float m_ValueShock;
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 
14  float GetValueGlobal()
15  {
16  return m_ValueGlobal;
17  }
18 
19  float GetValueShock()
20  {
21  return m_ValueShock;
22  }
23 
24  float GetValueBlood()
25  {
26  return m_ValueBlood;
27  }
28 
29 
30 }
DamageData
Definition: damagedata.c:1