summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/api/service/ObfuscationTestService.java
blob: af0cf30b2622e0bc0b43abfef9309b6b95a6dee6 (plain) (blame)
1
2
3
4
5
6
7
8
9
package cuchaz.enigma.api.service;

import cuchaz.enigma.translation.representation.entry.Entry;

public interface ObfuscationTestService extends EnigmaService {
	EnigmaServiceType<ObfuscationTestService> TYPE = EnigmaServiceType.create("obfuscation_test");

	boolean testDeobfuscated(Entry<?> entry);
}