sointu/audio/player.go

7 lines
92 B
Go

package audio
type Player interface {
Play(buffer []float32) (err error)
Close() error
}