Add .blend export
This commit is contained in:
10
src/main/java/com/replaymod/render/blend/Exporter.java
Normal file
10
src/main/java/com/replaymod/render/blend/Exporter.java
Normal file
@@ -0,0 +1,10 @@
|
||||
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 {}
|
||||
}
|
||||
Reference in New Issue
Block a user