package org.hl.engine.objects.yloaders; import java.util.ArrayList; public class YPoint implements java.io.Serializable { private ArrayList vertex; private ArrayList texture; private ArrayList color; public ArrayList getVertex() { return vertex; } public void setVertex(ArrayList vertex) { this.vertex = vertex; } public ArrayList getTexture() { return texture; } public void setTexture(ArrayList texture) { this.texture = texture; } public ArrayList getColor() { return color; } public void setColor(ArrayList color) { this.color = color; } }