package model; public class Vec2 { public float x; public float y; public Vec2(float x, float y) { this.x = x; this.y = y; } }