UNPKG

@osbjs/osbjs

Version:

a minimalist osu! storyboarding framework

17 lines (16 loc) 382 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OsbVector2 = void 0; class OsbVector2 { constructor(x, y) { this.x = x; this.y = y; } static fromVector2(v) { return new OsbVector2(v.x, v.y); } toString() { return `${this.x},${this.y}`; } } exports.OsbVector2 = OsbVector2;