blob: 0f9e41c614febd67f7d22778e2fef9efe6864744 (
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 {
PROCYON("Procyon", Decompilers.PROCYON),
CFR("CFR", Decompilers.CFR);
public final DecompilerService service;
public final String name;
Decompiler(String name, DecompilerService service) {
this.name = name;
this.service = service;
}
}
|