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