Exemplo n.º 1
0
func GetStandardPath(path int) Path {
	var pth *C.ALLEGRO_PATH

	pth = C.al_get_standard_path(C.int(path))

	return toPth(pth)
}
Exemplo n.º 2
0
Arquivo: al.go Projeto: beoran/algo
// Gets a standard path location.
func GetStandardPath(id int) *Path {
	return wrapPath(C.al_get_standard_path(C.int(id)))
}
Exemplo n.º 3
0
func GetStandardPath(id int32) *Path {
	return (*Path)(unsafe.Pointer(C.al_get_standard_path(C.int(id))))
}