bug: quaternion?

This commit is contained in:
2025-06-07 22:51:11 +09:00
parent a143e69796
commit 6e09946bf1
2 changed files with 4 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "computercraft-vs", "name": "computercraft-vs",
"version": "1.0.2", "version": "1.0.3",
"description": "", "description": "",
"license": "ISC", "license": "ISC",
"author": "", "author": "",

3
types/index.d.ts vendored
View File

@@ -1,5 +1,8 @@
/** @noSelfInFile */
export {}; export {};
/** @noSelf */
declare global { declare global {
type ShipVec3 = { x: number; y: number; z: number }; type ShipVec3 = { x: number; y: number; z: number };
type ShipQuaternion = { x: number; y: number; z: number; w: number }; type ShipQuaternion = { x: number; y: number; z: number; w: number };