moving and vm options

This commit is contained in:
2020-05-07 14:24:03 -04:00
parent 757c20d8a0
commit 9e19b8980e
14 changed files with 4 additions and 1 deletions
+24
View File
@@ -0,0 +1,24 @@
package org.hl.engine.graphics;
import org.hl.engine.math.Vector3f;
public class Vertex {
// Just a vertex
private Vector3f position;
private Vector3f color;
public Vertex (Vector3f position, Vector3f color) {
this.position = position;
this.color = color;
}
public Vector3f getPosition() {
return position;
}
public Vector3f getColor() {
return color;
}
}