18 lines
187 B
Java
18 lines
187 B
Java
|
|
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;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|