mirror of
https://github.com/vsariola/sointu.git
synced 2025-06-03 17:18:20 -04:00
not sure if this is actually required, though? shouldn't we just try to close and disregard errors?
7 lines
92 B
Go
7 lines
92 B
Go
package audio
|
|
|
|
type Player interface {
|
|
Play(buffer []float32) (err error)
|
|
Close() error
|
|
}
|