mirror of
https://github.com/vsariola/sointu.git
synced 2025-05-28 03:10:24 -04:00
splitting implementation into a separate package to potentially allow for other sorts of output, too.
7 lines
86 B
Go
7 lines
86 B
Go
package audio
|
|
|
|
type Player interface {
|
|
Play(buffer []float32) (err error)
|
|
Close()
|
|
}
|