1.0.6 update

removed owo lib
fixed some bugs
This commit is contained in:
MeexReay 2023-10-20 16:46:07 +03:00
parent 1ad16e6343
commit e593859723
19 changed files with 990 additions and 199 deletions

View file

@ -0,0 +1,30 @@
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;
}
}