package model; public class FacePTN { public int position; public int texture; public int normal; FacePTN(int position, int texture, int normal) { this.position = position; this.texture = texture; this.normal = normal; } }