forgot return type in func getVolume

This commit is contained in:
127-Z3R0 2020-05-10 20:57:40 +02:00
parent 3f56b033ba
commit 40890f4e37

View File

@ -39,7 +39,7 @@ class SoundManager {
audioPlayer.volume = volume
}
static func getVolume() {
static func getVolume() -> Float {
return audioPlayer.volume
}
}