repeating-mod/src/main/java/themixray/repeating/mod/render/buffer/Vertex.java
MeexReay e593859723 1.0.6 update
removed owo lib
fixed some bugs
2023-10-20 16:46:07 +03:00

30 lines
No EOL
555 B
Java

package themixray.repeating.mod.render.buffer;
import lombok.Getter;
public class Vertex {
@Getter
private float x;
@Getter
private float y;
@Getter
private float z;
@Getter
private float r;
@Getter
private float g;
@Getter
private float b;
@Getter
private float a;
public Vertex(float x, float y, float z, float r, float g, float b, float a) {
this.x = x;
this.y = y;
this.z = z;
this.r = r;
this.g = g;
this.b = b;
this.a = a;
}
}