quake2ts 0.0.412 → 0.0.414
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/packages/client/dist/browser/index.global.js +12 -12
- package/packages/client/dist/browser/index.global.js.map +1 -1
- package/packages/client/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/game/dist/browser/index.global.js +1 -1
- package/packages/game/dist/browser/index.global.js.map +1 -1
- package/packages/game/dist/cjs/index.cjs +6 -0
- package/packages/game/dist/cjs/index.cjs.map +1 -1
- package/packages/game/dist/esm/index.js +6 -0
- package/packages/game/dist/esm/index.js.map +1 -1
- package/packages/game/dist/tsconfig.tsbuildinfo +1 -1
- package/packages/game/dist/types/dm/telefrag.d.ts +2 -0
- package/packages/game/dist/types/dm/telefrag.d.ts.map +1 -0
- package/packages/game/dist/types/editor/graph.d.ts +19 -0
- package/packages/game/dist/types/editor/graph.d.ts.map +1 -0
- package/packages/game/dist/types/editor/selection.d.ts.map +1 -1
- package/packages/game/dist/types/entities/system.d.ts +3 -0
- package/packages/game/dist/types/entities/system.d.ts.map +1 -1
- package/packages/game/dist/types/imports.d.ts +3 -0
- package/packages/game/dist/types/imports.d.ts.map +1 -1
|
@@ -4494,9 +4494,15 @@ var EntitySystem = class {
|
|
|
4494
4494
|
get trace() {
|
|
4495
4495
|
return this.imports.trace;
|
|
4496
4496
|
}
|
|
4497
|
+
get traceModel() {
|
|
4498
|
+
return this.imports.traceModel;
|
|
4499
|
+
}
|
|
4497
4500
|
get pointcontents() {
|
|
4498
4501
|
return this.imports.pointcontents;
|
|
4499
4502
|
}
|
|
4503
|
+
get areaEdicts() {
|
|
4504
|
+
return this.imports.areaEdicts;
|
|
4505
|
+
}
|
|
4500
4506
|
get game() {
|
|
4501
4507
|
return this._game;
|
|
4502
4508
|
}
|