コード例 #1
0
ファイル: time.go プロジェクト: bluepeppers/allegro
func GetTime() float64 {
	var f float64

	f = float64(C.al_get_time())

	return f
}
コード例 #2
0
ファイル: al.go プロジェクト: beoran/algo
// Gets the time the app is running in seconds
func GetTime() float64 {
	return float64(C.al_get_time())
}
コード例 #3
0
ファイル: time.go プロジェクト: b1naryth1ef/allegro
func CurrentTime() float64 {
	return float64(C.al_get_time())
}