mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-02 14:46:28 -05:00
11 lines
312 B
Go
11 lines
312 B
Go
|
package d2interface
|
||
|
|
||
|
// ArchivedFileManager manages file access to the archives being managed
|
||
|
// by the ArchiveManager
|
||
|
type ArchivedFileManager interface {
|
||
|
Cacher
|
||
|
LoadFileStream(filePath string) (ArchiveDataStream, error)
|
||
|
LoadFile(filePath string) ([]byte, error)
|
||
|
FileExists(filePath string) (bool, error)
|
||
|
}
|