quake2ts 0.0.185 → 0.0.186

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.
Files changed (42) hide show
  1. package/package.json +1 -1
  2. package/packages/cgame/dist/index.d.mts +3 -0
  3. package/packages/cgame/dist/index.d.ts +3 -0
  4. package/packages/cgame/dist/index.js +32 -0
  5. package/packages/cgame/dist/index.mjs +7 -0
  6. package/packages/client/dist/browser/index.global.js +2 -2
  7. package/packages/client/dist/browser/index.global.js.map +1 -1
  8. package/packages/client/dist/cjs/index.cjs +6 -0
  9. package/packages/client/dist/cjs/index.cjs.map +1 -1
  10. package/packages/client/dist/esm/index.js +6 -0
  11. package/packages/client/dist/esm/index.js.map +1 -1
  12. package/packages/client/dist/tsconfig.tsbuildinfo +1 -1
  13. package/packages/engine/dist/browser/index.global.js +1 -1
  14. package/packages/engine/dist/browser/index.global.js.map +1 -1
  15. package/packages/engine/dist/cjs/index.cjs +3 -0
  16. package/packages/engine/dist/cjs/index.cjs.map +1 -1
  17. package/packages/engine/dist/esm/index.js +3 -0
  18. package/packages/engine/dist/esm/index.js.map +1 -1
  19. package/packages/engine/dist/tsconfig.tsbuildinfo +1 -1
  20. package/packages/game/dist/browser/index.global.js +2 -2
  21. package/packages/game/dist/browser/index.global.js.map +1 -1
  22. package/packages/game/dist/cjs/index.cjs +3 -0
  23. package/packages/game/dist/cjs/index.cjs.map +1 -1
  24. package/packages/game/dist/esm/index.js +3 -0
  25. package/packages/game/dist/esm/index.js.map +1 -1
  26. package/packages/game/dist/tsconfig.tsbuildinfo +1 -1
  27. package/packages/shared/dist/browser/index.global.js +1 -1
  28. package/packages/shared/dist/browser/index.global.js.map +1 -1
  29. package/packages/shared/dist/cjs/index.cjs +3 -0
  30. package/packages/shared/dist/cjs/index.cjs.map +1 -1
  31. package/packages/shared/dist/esm/index.js +3 -0
  32. package/packages/shared/dist/esm/index.js.map +1 -1
  33. package/packages/shared/dist/tsconfig.tsbuildinfo +1 -1
  34. package/packages/shared/dist/types/pmove/config.d.ts +5 -0
  35. package/packages/shared/dist/types/pmove/config.d.ts.map +1 -0
  36. package/packages/shared/dist/types/protocol/configstrings.d.ts +3 -0
  37. package/packages/shared/dist/types/protocol/configstrings.d.ts.map +1 -1
  38. package/packages/shared/dist/types/protocol/layout.d.ts +9 -0
  39. package/packages/shared/dist/types/protocol/layout.d.ts.map +1 -0
  40. package/packages/shared/dist/types/protocol/stats.d.ts +28 -0
  41. package/packages/shared/dist/types/protocol/stats.d.ts.map +1 -0
  42. package/packages/tools/dist/tsconfig.tsbuildinfo +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quake2ts",
3
- "version": "0.0.185",
3
+ "version": "0.0.186",
4
4
  "description": "Quake II re-release port to TypeScript with WebGL renderer - A complete game engine with physics, networking, and BSP rendering",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@8.15.7",
@@ -0,0 +1,3 @@
1
+ declare function GetCGameAPI(): {};
2
+
3
+ export { GetCGameAPI };
@@ -0,0 +1,3 @@
1
+ declare function GetCGameAPI(): {};
2
+
3
+ export { GetCGameAPI };
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ GetCGameAPI: () => GetCGameAPI
24
+ });
25
+ module.exports = __toCommonJS(index_exports);
26
+ function GetCGameAPI() {
27
+ return {};
28
+ }
29
+ // Annotate the CommonJS export names for ESM import in node:
30
+ 0 && (module.exports = {
31
+ GetCGameAPI
32
+ });
@@ -0,0 +1,7 @@
1
+ // src/index.ts
2
+ function GetCGameAPI() {
3
+ return {};
4
+ }
5
+ export {
6
+ GetCGameAPI
7
+ };