@rlsdk/steam 1.0.0

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 (78) hide show
  1. package/README.md +166 -0
  2. package/classes/AkAudio.ts +620 -0
  3. package/classes/Core.ts +1489 -0
  4. package/classes/Engine.ts +25512 -0
  5. package/classes/GFxUI.ts +480 -0
  6. package/classes/IpDrv.ts +2146 -0
  7. package/classes/OnlineSubsystemEOS.ts +954 -0
  8. package/classes/OnlineSubsystemSteamworks.ts +933 -0
  9. package/classes/ProjectX.ts +14003 -0
  10. package/classes/TAGame.ts +54138 -0
  11. package/classes/WinDrv.ts +116 -0
  12. package/classes/XAudio2.ts +13 -0
  13. package/classes/index.ts +20 -0
  14. package/constants/AkAudio.ts +6 -0
  15. package/constants/Core.ts +28 -0
  16. package/constants/Engine.ts +109 -0
  17. package/constants/GFxUI.ts +6 -0
  18. package/constants/IpDrv.ts +13 -0
  19. package/constants/OnlineSubsystemEOS.ts +6 -0
  20. package/constants/OnlineSubsystemSteamworks.ts +6 -0
  21. package/constants/ProjectX.ts +19 -0
  22. package/constants/TAGame.ts +79 -0
  23. package/constants/WinDrv.ts +6 -0
  24. package/constants/XAudio2.ts +6 -0
  25. package/constants/index.ts +14 -0
  26. package/enums/AkAudio.ts +121 -0
  27. package/enums/Core.ts +1646 -0
  28. package/enums/Engine.ts +3782 -0
  29. package/enums/GFxUI.ts +111 -0
  30. package/enums/IpDrv.ts +321 -0
  31. package/enums/OnlineSubsystemEOS.ts +25 -0
  32. package/enums/OnlineSubsystemSteamworks.ts +62 -0
  33. package/enums/ProjectX.ts +624 -0
  34. package/enums/TAGame.ts +2637 -0
  35. package/enums/WinDrv.ts +6 -0
  36. package/enums/XAudio2.ts +6 -0
  37. package/enums/index.ts +18 -0
  38. package/index.ts +11 -0
  39. package/offsets/AkAudio.ts +1049 -0
  40. package/offsets/Core.ts +1765 -0
  41. package/offsets/Engine.ts +26914 -0
  42. package/offsets/GFxUI.ts +525 -0
  43. package/offsets/IpDrv.ts +2259 -0
  44. package/offsets/OnlineSubsystemEOS.ts +602 -0
  45. package/offsets/OnlineSubsystemSteamworks.ts +1283 -0
  46. package/offsets/ProjectX.ts +14375 -0
  47. package/offsets/TAGame.ts +47649 -0
  48. package/offsets/WinDrv.ts +180 -0
  49. package/offsets/XAudio2.ts +102 -0
  50. package/offsets/globals.ts +13 -0
  51. package/offsets/index.ts +21 -0
  52. package/package.json +134 -0
  53. package/parameters/AkAudio.ts +780 -0
  54. package/parameters/Core.ts +4839 -0
  55. package/parameters/Engine.ts +37953 -0
  56. package/parameters/GFxUI.ts +1450 -0
  57. package/parameters/IpDrv.ts +7591 -0
  58. package/parameters/OnlineSubsystemEOS.ts +4309 -0
  59. package/parameters/OnlineSubsystemSteamworks.ts +4391 -0
  60. package/parameters/ProjectX.ts +31213 -0
  61. package/parameters/TAGame.ts +129564 -0
  62. package/parameters/WinDrv.ts +276 -0
  63. package/parameters/XAudio2.ts +4 -0
  64. package/parameters/index.ts +19 -0
  65. package/structs/AkAudio.ts +132 -0
  66. package/structs/Core.ts +750 -0
  67. package/structs/Engine.ts +5968 -0
  68. package/structs/GFxUI.ts +136 -0
  69. package/structs/IpDrv.ts +681 -0
  70. package/structs/OnlineSubsystemEOS.ts +23 -0
  71. package/structs/OnlineSubsystemSteamworks.ts +306 -0
  72. package/structs/ProjectX.ts +2527 -0
  73. package/structs/TAGame.ts +7487 -0
  74. package/structs/WinDrv.ts +6 -0
  75. package/structs/XAudio2.ts +6 -0
  76. package/structs/index.ts +18 -0
  77. package/types/GameDefines.ts +35 -0
  78. package/types/index.ts +9 -0
@@ -0,0 +1,6 @@
1
+ /**
2
+ * WinDrv Package - Structs
3
+ * Auto-generated by Stev Peifer <stev.p@outlook.com> (https://github.com/ObscuritySRL)
4
+ */
5
+
6
+ export {};
@@ -0,0 +1,6 @@
1
+ /**
2
+ * XAudio2 Package - Structs
3
+ * Auto-generated by Stev Peifer <stev.p@outlook.com> (https://github.com/ObscuritySRL)
4
+ */
5
+
6
+ export {};
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Structs Index
3
+ * Auto-generated by Stev Peifer <stev.p@outlook.com> (https://github.com/ObscuritySRL)
4
+ *
5
+ * Structs are exported as namespaces for consistency.
6
+ * Usage: import { TAGame } from "rocketleaguesdk/structs";
7
+ * TAGame.FCarStateData
8
+ */
9
+
10
+ export * as Core from './Core';
11
+ export * as Engine from './Engine';
12
+ export * as GFxUI from './GFxUI';
13
+ export * as IpDrv from './IpDrv';
14
+ export * as AkAudio from './AkAudio';
15
+ export * as OnlineSubsystemEOS from './OnlineSubsystemEOS';
16
+ export * as ProjectX from './ProjectX';
17
+ export * as OnlineSubsystemSteamworks from './OnlineSubsystemSteamworks';
18
+ export * as TAGame from './TAGame';
@@ -0,0 +1,35 @@
1
+ /**
2
+ * RocketLeagueSDK - Game Defines
3
+ * Auto-generated by Stev Peifer <stev.p@outlook.com> (https://github.com/ObscuritySRL)
4
+ */
5
+
6
+ export type FName = {
7
+ Index: number;
8
+ Number: number;
9
+ };
10
+
11
+ export type FString = {
12
+ Data: bigint;
13
+ Count: number;
14
+ Max: number;
15
+ };
16
+
17
+ export type FScriptDelegate = {
18
+ Object: bigint;
19
+ FunctionName: FName;
20
+ };
21
+
22
+ export type FPointer = {
23
+ Dummy: bigint;
24
+ };
25
+
26
+ export type FQWord = {
27
+ A: number;
28
+ B: number;
29
+ };
30
+
31
+ export type FMap_Mirror = {
32
+ Data: bigint;
33
+ Count: number;
34
+ Max: number;
35
+ };
package/types/index.ts ADDED
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Types Index
3
+ * Auto-generated by Stev Peifer <stev.p@outlook.com> (https://github.com/ObscuritySRL)
4
+ */
5
+
6
+ export * from './GameDefines';
7
+
8
+ export * as Classes from '../classes';
9
+ export * as Structs from '../structs';