jvm/model/FacePTN.java
2024-12-29 02:00:15 -06:00

14 lines
269 B
Java

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;
}
}