mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
55dc3e42ed
* adding comments to d2interface for linter * moved d2render renderer interfaces and types into d2interface
8 lines
141 B
Go
8 lines
141 B
Go
package d2interface
|
|
|
|
// SoundEffect is something that that the AudioProvider can Play or Stop
|
|
type SoundEffect interface {
|
|
Play()
|
|
Stop()
|
|
}
|