Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
cfgparamint.c
Go to the documentation of this file.
1 class CfgParamInt extends CfgParamType
2 {
3  private int m_Value;
4 
5  void CfgParamInt(string param_name)
6  {
7  m_Value = 0;
8  }
9 
10  void SetValue(int value)
11  {
12  m_Value = value;
13  }
14 
15  int GetValue()
16  {
17  return m_Value;
18  }
19 
20  override int GetType()
21  {
22  return CFG_TYPE_INT;
23  }
24 }
m_Value
string m_Value
Definition: enentity.c:5
CfgParamType
Definition: cfgparambool.c:1
CFG_TYPE_INT
const int CFG_TYPE_INT
Definition: cfgparam.c:2
GetValue
string GetValue(int pIndex)
Definition: universaltemperaturesource.c:256
SetValue
override void SetValue(int value, bool fire_event=true)
Definition: optionselectormultistate.c:226
GetType
override int GetType()
Definition: huddebugwincharagents.c:49