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
|
@@ -4665,9 +4665,15 @@ var EntitySystem = class {
|
|
|
4665
4665
|
get trace() {
|
|
4666
4666
|
return this.imports.trace;
|
|
4667
4667
|
}
|
|
4668
|
+
get traceModel() {
|
|
4669
|
+
return this.imports.traceModel;
|
|
4670
|
+
}
|
|
4668
4671
|
get pointcontents() {
|
|
4669
4672
|
return this.imports.pointcontents;
|
|
4670
4673
|
}
|
|
4674
|
+
get areaEdicts() {
|
|
4675
|
+
return this.imports.areaEdicts;
|
|
4676
|
+
}
|
|
4671
4677
|
get game() {
|
|
4672
4678
|
return this._game;
|
|
4673
4679
|
}
|