blob: f9b5cbe12c17d7bbc15850437b17bf3bfedc1e91 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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),
BYTECODE("Bytecode", Decompilers.BYTECODE);
public final DecompilerService service;
public final String name;
Decompiler(String name, DecompilerService service) {
this.name = name;
this.service = service;
}
}
|