blob: af0933f629a839fef489e4438f4bf1cf909df2fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package cuchaz.enigma.translation.mapping.serde;
import cuchaz.enigma.ProgressListener;
import cuchaz.enigma.throwables.MappingParseException;
import cuchaz.enigma.translation.mapping.EntryMapping;
import cuchaz.enigma.translation.mapping.tree.EntryTree;
import java.io.IOException;
import java.nio.file.Path;
public interface MappingsReader {
EntryTree<EntryMapping> read(Path path, ProgressListener progress) throws MappingParseException, IOException;
}
|