File size: 424 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
class DamageData
{
float m_ValueGlobal;
float m_ValueBlood;
float m_ValueShock;
void DamageData(float value_global, float value_blood, float value_shock)
{
m_ValueGlobal = value_global;
m_ValueBlood = value_blood;
m_ValueShock = value_shock;
}
float GetValueGlobal()
{
return m_ValueGlobal;
}
float GetValueShock()
{
return m_ValueShock;
}
float GetValueBlood()
{
return m_ValueBlood;
}
} |