blob: 7d154a6a347fe8d17f78550c69ce63aa59f5310e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
package cuchaz.enigma.source;
import cuchaz.enigma.source.cfr.CfrDecompiler;
import cuchaz.enigma.source.procyon.ProcyonDecompiler;
public class Decompilers {
public static final DecompilerService PROCYON = ProcyonDecompiler::new;
public static final DecompilerService CFR = CfrDecompiler::new;
}
|