mirror of
https://github.com/vsariola/sointu.git
synced 2025-05-28 03:10:24 -04:00
7 lines
92 B
Go
7 lines
92 B
Go
package audio
|
|
|
|
type Player interface {
|
|
Play(buffer []float32) (err error)
|
|
Close() error
|
|
}
|