Versions in this module Expand all Collapse all v0 v0.1.0 Aug 8, 2026 Changes in this version + var ErrUnsupportedFormat = errors.New("unrealpak: unsupported pak feature") + type FileEntry struct + Path string + Size int64 + type Option func(*Writer) + func WithMountPoint(mountPoint string) Option + type Reader struct + func Open(path string) (*Reader, error) + func (r *Reader) Close() error + func (r *Reader) Files() []FileEntry + func (r *Reader) IndexHash() string + func (r *Reader) MountPoint() string + func (r *Reader) ReadFile(path string) ([]byte, error) + type Writer struct + func Create(path string, opts ...Option) (*Writer, error) + func (w *Writer) AddFile(mountPath string, data []byte) error + func (w *Writer) Close() error