Paper/paper-api-generator/src/main/java/io/papermc/generator/rewriter/SourceRewriter.java
2024-04-11 20:19:01 +02:00

11 lines
188 B
Java

package io.papermc.generator.rewriter;
import java.io.IOException;
import java.nio.file.Path;
public interface SourceRewriter {
void writeToFile(Path parent) throws IOException;
}