@overlayed/app 0.2.1
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/LICENSE.md +16 -0
- package/README.md +0 -0
- package/dist/config.d.ts +5 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1388 -0
- package/dist/managers/errorManager.d.ts +34 -0
- package/dist/managers/gameBuildManager.d.ts +18 -0
- package/dist/managers/gameLaunchManager.d.ts +36 -0
- package/dist/managers/keybindManager.d.ts +38 -0
- package/dist/managers/manager.d.ts +18 -0
- package/dist/managers/nativeModuleManager.d.ts +31 -0
- package/dist/managers/processManager.d.ts +34 -0
- package/dist/managers/ravenManager.d.ts +35 -0
- package/dist/native-interface/build/overlayed_native_interface_x64.node +0 -0
- package/dist/native-interface/main.js +4 -0
- package/dist/overlayed.d.ts +4 -0
- package/dist/render-interface/build/overlayed_render_hook_x64.dll +0 -0
- package/dist/render-interface/build/overlayed_render_interface_x64.node +0 -0
- package/dist/render-interface/main.js +4 -0
- package/dist/types.d.ts +50 -0
- package/dist/utils.d.ts +2 -0
- package/package.json +63 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023-present OVERLAYED LLC. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are the proprietary and confidential information of
|
|
6
|
+
OVERLAYED LLC. You may not use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software
|
|
7
|
+
without explicit written permission from OVERLAYED LLC.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
10
|
+
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
11
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
12
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13
|
+
|
|
14
|
+
Unauthorized copying, transfer, or reproduction of the contents of this Software, via any medium is strictly prohibited.
|
|
15
|
+
|
|
16
|
+
All rights not expressly granted herein are reserved by OVERLAYED LLC.
|
package/README.md
ADDED
|
File without changes
|
package/dist/config.d.ts
ADDED
package/dist/index.d.ts
ADDED