1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-29 06:36:30 -04:00
OpenDiablo2/d2common/d2interface/archived_font_manager.go

9 lines
232 B
Go
Raw Normal View History

package d2interface
// ArchivedFontManager manages fonts that are in archives being
// managed by the ArchiveManager
type ArchivedFontManager interface {
Cacher
LoadFont(tablePath, spritePath, palettePath string) (Font, error)
}