1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-15 20:15:24 +00:00
OpenDiablo2/d2common/d2interface/sound_effect.go

8 lines
141 B
Go
Raw Normal View History

2020-06-28 23:31:10 +00:00
package d2interface
// SoundEffect is something that that the AudioProvider can Play or Stop
2020-06-28 23:31:10 +00:00
type SoundEffect interface {
Play()
Stop()
}