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
8 lines
167 B
Go
8 lines
167 B
Go
package d2interface
|
|
|
|
// PaletteManager is responsible for loading palettes
|
|
type PaletteManager interface {
|
|
Cacher
|
|
LoadPalette(palettePath string) (Palette, error)
|
|
}
|