func (h *HGE) Ini_GetString(section, name, def_val string) string { return ini.NewIni(section, name).GetString(def_val) }
func (h *HGE) Ini_SetString(section, name, value string) { ini.NewIni(section, name).SetString(value) }
func (h *HGE) Ini_GetFloat(section, name string, def_val float64) float64 { return ini.NewIni(section, name).GetFloat(def_val) }
func (h *HGE) Ini_SetFloat(section, name string, value float64) { ini.NewIni(section, name).SetFloat(value) }
func (h *HGE) Ini_GetInt(section, name string, def_val int) int { return ini.NewIni(section, name).GetInt(def_val) }
func (h *HGE) Ini_SetInt(section, name string, value int) { ini.NewIni(section, name).SetInt(value) }