mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-17 01:51:14 -05:00
15 lines
238 B
Go
15 lines
238 B
Go
package asset
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
// Source is an abstraction for something that can load and list assets
|
|
type Source interface {
|
|
fmt.Stringer
|
|
Open(name string) (io.ReadSeeker, error)
|
|
Path() string
|
|
Exists(subPath string) bool
|
|
}
|