blob: 8232ab6eeae6d3eb32066907d6797fc4cd944fb7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package cuchaz.enigma.gui.config;
import cuchaz.enigma.source.DecompilerService;
import cuchaz.enigma.source.Decompilers;
public enum Decompiler {
CFR("CFR", Decompilers.CFR),
PROCYON("Procyon", Decompilers.PROCYON);
public final DecompilerService service;
public final String name;
Decompiler(String name, DecompilerService service) {
this.name = name;
this.service = service;
}
}
|