util for last commit. whoops.
parent
121f9ac779
commit
bec5cca553
|
|
@ -0,0 +1,17 @@
|
||||||
|
package xyz.valnet.engine.math;
|
||||||
|
|
||||||
|
public class Vector2i {
|
||||||
|
|
||||||
|
public int x, y;
|
||||||
|
|
||||||
|
public Vector2i() {
|
||||||
|
x = 0;
|
||||||
|
y = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Vector2i(int x, int y) {
|
||||||
|
this.x = x;
|
||||||
|
this.y = y;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue