This repository has been archived on 2022-06-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
helium/src/org/hl/engine/objects/yloaders/YMesh.java
T
2020-05-29 15:32:24 -04:00

43 lines
756 B
Java

package org.hl.engine.objects.yloaders ;
import java.util.ArrayList;
public class YMesh implements java.io.Serializable {
private String type;
private ArrayList<YPoint> vertices;
private ArrayList<Integer> cull;
private String texture;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public ArrayList<YPoint> getVertices() {
return vertices;
}
public void setVertices(ArrayList<YPoint> vertices) {
this.vertices = vertices;
}
public ArrayList<Integer> getCull() {
return cull;
}
public void setCull(ArrayList<Integer> cull) {
this.cull = cull;
}
public String getTexture() {
return texture;
}
public void setTexture(String texture) {
this.texture = texture;
}
}