Exemple #1
0
bool GuiConfig::Read(const string &option, int8_t &value)
{
	if(!option.size())
		return true;

	value = AG_GetSint8(agConfig, option.c_str());

	return false;
}
Exemple #2
0
Sint8
agar_gui_widget_get_int8 (AG_Widget *w, const char *binding)
{
  return AG_GetSint8 (w, binding);
}