예제 #1
0
파일: al.go 프로젝트: beoran/algo
// Installs the Allegro system.
func InstallSystem() bool {
	return bool(C.al_install_system(VERSION_INT, nil))
}
예제 #2
0
파일: al.go 프로젝트: beoran/algo
// Initializes the Allegro system.
func Initialize() bool {
	return bool(C.al_install_system(VERSION_INT, nil))
	//	return bool(C.algo_initialize())
}
예제 #3
0
func InstallSystem(version int32) bool {
	return bool(C.al_install_system(C.int(version), nil))
}
예제 #4
0
func Init() bool {
	return bool(C.al_install_system(C.ALLEGRO_VERSION_INT, nil))
}
예제 #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)

}