mirror of
https://gitee.com/onvia/ccc-tnt-psd2ui
synced 2026-03-21 05:31:42 +00:00
两个版本的插件
This commit is contained in:
10
ccc-tnt-psd2ui-v3.4.+/libs/psd2ui/values/Vec2.js
Normal file
10
ccc-tnt-psd2ui-v3.4.+/libs/psd2ui/values/Vec2.js
Normal file
@@ -0,0 +1,10 @@
|
||||
"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;
|
||||
Reference in New Issue
Block a user