Exemplo n.º 1
0
func SaveAllDollarTemplates(rw *RWops) error {
	if C.SDL_SaveAllDollarTemplates(rw.c) != 0 {
		return getError()
	}

	return nil
}
Exemplo n.º 2
0
func SaveAllDollarTemplates(src *RWops) int {
	_src := (*C.SDL_RWops)(unsafe.Pointer(src))
	return (int)(C.SDL_SaveAllDollarTemplates(_src))
}
Exemplo n.º 3
0
// SaveAllDollarTemplates (https://wiki.libsdl.org/SDL_SaveAllDollarTemplates)
func SaveAllDollarTemplates(src *RWops) int {
	return int(C.SDL_SaveAllDollarTemplates(src.cptr()))
}