Setting default position of vector to 0.
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Debucquoy 2023-03-23 11:24:34 +01:00
parent bc2feee03c
commit e7d82b3076
No known key found for this signature in database
GPG Key ID: 3B9EEB701C9E2919

View File

@ -8,8 +8,8 @@ public class Vec2 {
public int x, y; public int x, y;
public Vec2() { public Vec2() {
x = -1; x = 0;
y = -1; y = 0;
} }
public Vec2(int x, int y ){ public Vec2(int x, int y ){