blob: 4c60787da889b81ad2122b205832f89c7e918964 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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.MappingSaveParameters;
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, MappingSaveParameters saveParameters) throws MappingParseException, IOException;
}
|