コード例 #1
0
ファイル: mouse.go プロジェクト: bluepeppers/allegro
func SetMouseWZ(w, z int) bool {
	var b bool

	b = bool(C.al_set_mouse_w(C.int(w))) && bool(C.al_set_mouse_z(C.int(z)))

	return b
}
コード例 #2
0
ファイル: mouse.go プロジェクト: b1naryth1ef/allegro
func SetMouseW(w int32) bool {
	return bool(C.al_set_mouse_w(C.int(w)))
}