Add render queue

This commit is contained in:
johni0702
2016-12-31 16:29:17 +01:00
parent 03534c6515
commit 1b099f9ef6
8 changed files with 354 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
package com.replaymod.render.utils;
import com.replaymod.render.RenderSettings;
import com.replaymod.replaystudio.pathing.path.Timeline;
import lombok.Data;
@Data
public class RenderJob {
private String name;
private Timeline timeline;
private RenderSettings settings;
}