diff --git a/null/null.go b/null/null.go index ea61d1f..098454b 100644 --- a/null/null.go +++ b/null/null.go @@ -71,6 +71,11 @@ func (p Playable) Play(loops int) error { return nil } +// Playing? +func (p Playable) Playing() bool { + return false +} + // Pause nothing func (p Playable) Pause() error { return nil