mirror of
https://gitee.com/onvia/ccc-tnt-psd2ui
synced 2024-12-28 04:27:42 +00:00
11 lines
234 B
JavaScript
11 lines
234 B
JavaScript
"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;
|