Revert "Revert "adding textures (has errors)""

This reverts commit 8c94a73d70.

removing textureloader
This commit is contained in:
2020-05-10 10:52:12 -04:00
parent 8c94a73d70
commit 6f99ed0ebe
12 changed files with 99 additions and 26 deletions
+32
View File
@@ -0,0 +1,32 @@
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;
}
}