"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Vec2 = void 0; class Vec2 { constructor(x = 0, y = 0) { this.x = x || 0; this.y = y || 0; } } exports.Vec2 = Vec2;