blob: f239ee67cfa8e4ea4db62bf54293346321fe4549 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package cuchaz.enigma.translation.mapping.serde;
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) throws MappingParseException, IOException;
}
|