Example #1
0
func (h *HGE) Ini_GetString(section, name, def_val string) string {
	return ini.NewIni(section, name).GetString(def_val)
}
Example #2
0
func (h *HGE) Ini_SetString(section, name, value string) {
	ini.NewIni(section, name).SetString(value)
}
Example #3
0
func (h *HGE) Ini_GetFloat(section, name string, def_val float64) float64 {
	return ini.NewIni(section, name).GetFloat(def_val)
}
Example #4
0
func (h *HGE) Ini_SetFloat(section, name string, value float64) {
	ini.NewIni(section, name).SetFloat(value)
}
Example #5
0
func (h *HGE) Ini_GetInt(section, name string, def_val int) int {
	return ini.NewIni(section, name).GetInt(def_val)
}
Example #6
0
func (h *HGE) Ini_SetInt(section, name string, value int) {
	ini.NewIni(section, name).SetInt(value)
}