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
11 lines
296 B
Go
11 lines
296 B
Go
package d2interface
|
|
|
|
// FileManager manages file access to the archives being managed
|
|
// by the ArchiveManager
|
|
type FileManager interface {
|
|
Cacher
|
|
LoadFileStream(filePath string) (ArchiveDataStream, error)
|
|
LoadFile(filePath string) ([]byte, error)
|
|
FileExists(filePath string) (bool, error)
|
|
}
|