Files
class-obf/src/main/java/me/n1ar4/clazz/obfuscator/Const.java
4ra1n 9ebffa3c4f
Some checks failed
leak check / check (push) Has been cancelled
maven check / check (push) Has been cancelled
truffle check / test (push) Has been cancelled
release 1.9.0
2025-10-14 21:10:42 +08:00

18 lines
595 B
Java

package me.n1ar4.clazz.obfuscator;
import org.objectweb.asm.ClassReader;
import org.objectweb.asm.ClassWriter;
import org.objectweb.asm.Opcodes;
import java.nio.file.Path;
import java.nio.file.Paths;
public interface Const {
String VERSION = "1.9.0";
String PROJECT_URL = "https://github.com/4ra1n/class-obf";
Path configPath = Paths.get("config.yaml");
Path TEMP_PATH = Paths.get("class-obf-temp.class");
int ASMVersion = Opcodes.ASM9;
int ReaderASMOptions = ClassReader.SKIP_FRAMES;
int WriterASMOptions = ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS;
}