func GetTime() float64 { var f float64 f = float64(C.al_get_time()) return f }
// Gets the time the app is running in seconds func GetTime() float64 { return float64(C.al_get_time()) }
func CurrentTime() float64 { return float64(C.al_get_time()) }