blob: 43c4de0c2c649a0fe6fe3774d53f4460141123ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package cuchaz.enigma.source;
import cuchaz.enigma.translation.mapping.EntryRemapper;
public interface Source {
String asString();
Source addJavadocs(EntryRemapper remapper);
SourceIndex index();
}
|