Add .blend export

This commit is contained in:
Jonas Herzig
2018-03-03 14:31:10 +01:00
parent 78ad02bc84
commit 6794b58524
41 changed files with 3180 additions and 17 deletions

View File

@@ -0,0 +1,17 @@
package com.replaymod.render.blend.data;
import org.cakelab.blender.io.util.Identifier;
public class DId {
public final Identifier code;
public String name;
public DId(Identifier code) {
this.code = code;
}
public DId(Identifier code, String name) {
this.code = code;
this.name = name;
}
}