DayZ
1.24
Loading...
Searching...
No Matches
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
}
CFG_TYPE_INT
const int CFG_TYPE_INT
Definition
CfgParam.c:2
CfgParamType
Definition
CfgParamBool.c:2
CfgParamType::m_Value
bool m_Value
Definition
CfgParamBool.c:3
CfgParamType::GetValue
int GetValue()
Definition
CfgParamInt.c:15
CfgParamType::GetType
override int GetType()
Definition
CfgParamInt.c:20
CfgParamType::CfgParamInt
void CfgParamInt(string param_name)
Definition
CfgParamInt.c:5
CfgParamType::m_Value
int m_Value
Definition
CfgParamInt.c:3
CfgParamType::SetValue
void SetValue(int value)
Definition
CfgParamInt.c:10
Param3
Definition
EntityAI.c:95
m_Value
string m_Value
Definition
EnEntity.c:805
scripts
4_World
Classes
ConfigHandler
CfgParamInt.c
Generated by
1.10.0