Revert "adding textures (has errors)"

This reverts commit eb6101d2ec.
This commit is contained in:
2020-05-10 10:51:37 -04:00
parent 56c316fc49
commit 8c94a73d70
12 changed files with 26 additions and 99 deletions
-32
View File
@@ -1,32 +0,0 @@
package org.hl.engine.math.lalg;
public class Vector2f {
private float x, y;
// Just a vector if you know what I mean
public Vector2f (float x, float y) {
this.x = x;
this.y = y;
}
public float getX() {
return x;
}
public void setX(float x) {
this.x = x;
}
public float getY() {
return y;
}
public void setY(float y) {
this.y = y;
}
public void setVector(float x, float y) {
this.x = x;
this.y = y;
}
}