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