DayZ 1.24
Loading...
Searching...
No Matches
CfgParamFloat.c
Go to the documentation of this file.
1class CfgParamFloat extends CfgParamType
2{
3 private float m_Value;
4
6 {
7 m_Value = 0;
8 }
9
10 void SetValue(float value)
11 {
12 m_Value = value;
13 }
14
15 float GetValue()
16 {
17 return m_Value;
18 }
19
20 override int GetType()
21 {
22 return CFG_TYPE_FLOAT;
23 }
24}
const int CFG_TYPE_FLOAT
Definition CfgParam.c:3
void SetValue(float value)
void CfgParamFloat(string param_name)
float GetValue()
override int GetType()
string m_Value
Definition EnEntity.c:805