Example #1
0
File: al.go Project: beoran/algo
// Installs the Allegro system.
func InstallSystem() bool {
	return bool(C.al_install_system(VERSION_INT, nil))
}
Example #2
0
File: al.go Project: beoran/algo
// Initializes the Allegro system.
func Initialize() bool {
	return bool(C.al_install_system(VERSION_INT, nil))
	//	return bool(C.algo_initialize())
}
Example #3
0
func InstallSystem(version int32) bool {
	return bool(C.al_install_system(C.int(version), nil))
}
Example #4
0
func Init() bool {
	return bool(C.al_install_system(C.ALLEGRO_VERSION_INT, nil))
}
Example #5
0
// Don't support callback version as no idea how to do that
func InstallSystem(version int) {

	C.al_install_system(C.int(version), nil)

}