util for last commit. whoops.

pull/1/head
Valerie 2022-05-21 06:32:35 -04:00
parent 121f9ac779
commit bec5cca553
1 changed files with 17 additions and 0 deletions

View File

@ -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;
}
}