File size: 275 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
class CfgParamInt extends CfgParamType
{
private int m_Value;
void CfgParamInt(string param_name)
{
m_Value = 0;
}
void SetValue(int value)
{
m_Value = value;
}
int GetValue()
{
return m_Value;
}
override int GetType()
{
return CFG_TYPE_INT;
}
} |