Files
ReplayModCinematic/src/main/java/com/replaymod/render/blend/Exporter.java
2018-03-04 15:30:50 +01:00

11 lines
312 B
Java

package com.replaymod.render.blend;
import java.io.IOException;
public interface Exporter {
default void setup() throws IOException {}
default void tearDown() throws IOException {}
default void preFrame(int frame) throws IOException {}
default void postFrame(int frame) throws IOException {}
}