Add .blend export
This commit is contained in:
17
src/main/java/com/replaymod/render/blend/data/DId.java
Normal file
17
src/main/java/com/replaymod/render/blend/data/DId.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user