Dayz
Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Toggle main menu visibility
Loading...
Searching...
No Matches
cfgparamfloat.c
Go to the documentation of this file.
1
class
CfgParamFloat
extends
CfgParamType
2
{
3
private
float
m_Value
;
4
5
void
CfgParamFloat
(
string
param_name)
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
}
CFG_TYPE_FLOAT
const int CFG_TYPE_FLOAT
Definition
cfgparam.c:3
CfgParamType
Definition
cfgparambool.c:2
CfgParamType::SetValue
void SetValue(float value)
Definition
cfgparamfloat.c:10
CfgParamType::GetValue
float GetValue()
Definition
cfgparamfloat.c:15
CfgParamType::GetType
override int GetType()
Definition
cfgparamfloat.c:20
CfgParamType::CfgParamFloat
void CfgParamFloat(string param_name)
Definition
cfgparamfloat.c:5
CfgParamType::m_Value
bool m_Value
Definition
cfgparambool.c:3
Games
Dayz
scripts
4_world
classes
confighandler
cfgparamfloat.c
Generated by
1.17.0