12 lines
182 B
Swift
12 lines
182 B
Swift
|
import Foundation
|
||
|
|
||
|
protocol NativeSoundCalls {
|
||
|
|
||
|
func playBackgroundSound()
|
||
|
func stopBackgroundSound()
|
||
|
|
||
|
func playGunshotSound()
|
||
|
func stopGunshotSound()
|
||
|
|
||
|
}
|