mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-02 14:46:28 -05:00
9 lines
202 B
Go
9 lines
202 B
Go
|
package d2interface
|
||
|
|
||
|
// ArchiveDataStream is an archive data stream
|
||
|
type ArchiveDataStream interface {
|
||
|
Read(p []byte) (n int, err error)
|
||
|
Seek(offset int64, whence int) (int64, error)
|
||
|
Close() error
|
||
|
}
|