audioLoader is responsible for managing audio files within `engo.Files`
| 15 | |
| 16 | // audioLoader is responsible for managing audio files within `engo.Files` |
| 17 | type audioLoader struct { |
| 18 | audios map[string]*Player |
| 19 | } |
| 20 | |
| 21 | // Load processes the data stream and parses it as an audio file |
| 22 | func (a *audioLoader) Load(url string, data io.Reader) error { |
nothing calls this directly
no outgoing calls
no test coverage detected