示例#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)

}