add JsonMaterialMapping
This commit is contained in:
parent
a5a063cf2f
commit
c30e638901
|
@ -0,0 +1,16 @@
|
|||
package ca.blarg.gdx.assets.textureatlas;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class JsonMaterialMapping {
|
||||
public class Material {
|
||||
public String name;
|
||||
public int tile;
|
||||
public float minU;
|
||||
public float maxU;
|
||||
public float minV;
|
||||
public float maxV;
|
||||
}
|
||||
|
||||
public ArrayList<Material> materials;
|
||||
}
|
Loading…
Reference in a new issue