mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
fe992699b5
- fixed lint errors in d2interface - removed `archived_` from interface names, was not necessary - removed the Bitmuncher and Bitstream interfaces, as they are too specific and unnecessary
10 lines
262 B
Go
10 lines
262 B
Go
package d2interface
|
|
|
|
import "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum"
|
|
|
|
// AnimationManager loads animations
|
|
type AnimationManager interface {
|
|
Cacher
|
|
LoadAnimation(animationPath, palettePath string, drawEffect d2enum.DrawEffect) (Animation, error)
|
|
}
|