Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
cfgparamint.c
Go to the documentation of this file.
1class 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
16 {
17 return m_Value;
18 }
19
20 override int GetType()
21 {
22 return CFG_TYPE_INT;
23 }
24}
const int CFG_TYPE_INT
Definition cfgparam.c:2
void SetValue(int value)
Definition cfgparamint.c:10
void CfgParamInt(string param_name)
Definition cfgparamint.c:5
override int GetType()
Definition cfgparamint.c:20