├── .github └── workflows │ ├── VersionTools.ts │ └── build.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── settings.json └── tasks.json ├── License.md ├── README.md ├── assets ├── VidereLongeExample.mp4 ├── banner.png ├── hoverKeyboardMouse.png ├── keybindHover.png ├── launchGame.png ├── logo.png ├── modConfig.png ├── modZipped.png ├── movedFolders.png ├── openModsFolder.png ├── profileEditor.png ├── selectedFolders.png ├── selectedMods.png └── titleScreen.png ├── data ├── .gitignore ├── config.json └── packs │ ├── BP │ └── .gitkeep │ ├── RP │ ├── manifest.json │ ├── pack_icon.png │ └── texts │ │ └── en_US.lang │ └── data │ ├── .gitkeep │ └── generated │ ├── deno.json │ └── deno.lock ├── mod.json ├── src ├── ConfigManager.cpp ├── ConfigManager.hpp ├── dllmain.cpp └── dllmain.hpp └── xmake.lua /.github/workflows/VersionTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/.github/workflows/VersionTools.ts -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/README.md -------------------------------------------------------------------------------- /assets/VidereLongeExample.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/VidereLongeExample.mp4 -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/hoverKeyboardMouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/hoverKeyboardMouse.png -------------------------------------------------------------------------------- /assets/keybindHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/keybindHover.png -------------------------------------------------------------------------------- /assets/launchGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/launchGame.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/modConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/modConfig.png -------------------------------------------------------------------------------- /assets/modZipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/modZipped.png -------------------------------------------------------------------------------- /assets/movedFolders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/movedFolders.png -------------------------------------------------------------------------------- /assets/openModsFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/openModsFolder.png -------------------------------------------------------------------------------- /assets/profileEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/profileEditor.png -------------------------------------------------------------------------------- /assets/selectedFolders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/selectedFolders.png -------------------------------------------------------------------------------- /assets/selectedMods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/selectedMods.png -------------------------------------------------------------------------------- /assets/titleScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/assets/titleScreen.png -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /.regolith -------------------------------------------------------------------------------- /data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/data/config.json -------------------------------------------------------------------------------- /data/packs/BP/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/packs/RP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/data/packs/RP/manifest.json -------------------------------------------------------------------------------- /data/packs/RP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/data/packs/RP/pack_icon.png -------------------------------------------------------------------------------- /data/packs/RP/texts/en_US.lang: -------------------------------------------------------------------------------- 1 | key.zoom=Zoom -------------------------------------------------------------------------------- /data/packs/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/packs/data/generated/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/data/packs/data/generated/deno.json -------------------------------------------------------------------------------- /data/packs/data/generated/deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/data/packs/data/generated/deno.lock -------------------------------------------------------------------------------- /mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/mod.json -------------------------------------------------------------------------------- /src/ConfigManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/src/ConfigManager.cpp -------------------------------------------------------------------------------- /src/ConfigManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/src/ConfigManager.hpp -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/dllmain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/src/dllmain.hpp -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmethystAPI/VidereLonge/HEAD/xmake.lua --------------------------------------------------------------------------------