├── .clang-format ├── .claude └── settings.local.json ├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── AGENTS.md ├── CMakeLists.txt ├── CMakePresets.json ├── README.md ├── cmake └── patch_pugixml.cmake ├── compile_commands.json ├── copy_translations.cmake ├── doc ├── content.png ├── filter.png ├── scanner-menu.png └── scanner.png ├── fomod_plus.proj.DotSettings ├── installer ├── CMakeLists.txt ├── FomodInstallerWindow.cpp ├── FomodInstallerWindow.h ├── FomodPlusInstaller.cpp ├── FomodPlusInstaller.h ├── fomod_plus_de.ts ├── fomod_plus_en.ts ├── fomod_plus_installer_de.ts ├── fomod_plus_installer_en.ts ├── fomod_plus_installer_zh_CN.ts ├── fomod_plus_zh_CN.ts ├── fomodplus.json ├── integration │ ├── FomodDataContent.cpp │ └── FomodDataContent.h ├── lib │ ├── ConditionTester.cpp │ ├── ConditionTester.h │ ├── CrashHandler.cpp │ ├── CrashHandler.h │ ├── FileInstaller.cpp │ ├── FileInstaller.h │ ├── FlagMap.h │ ├── Logger.h │ └── ViewModels.h ├── resources.qrc ├── resources │ ├── delete.png │ ├── fomod_icon.png │ ├── image_icon.png │ ├── left-chevron.png │ └── right-chevron.png ├── ui │ ├── ClickableWidget.h │ ├── Colors.h │ ├── FomodImageViewer.cpp │ ├── FomodImageViewer.h │ ├── FomodViewModel.cpp │ ├── FomodViewModel.h │ ├── ScaleLabel.cpp │ ├── ScaleLabel.h │ ├── UIHelper.cpp │ └── UIHelper.h └── xml │ ├── FomodInfoFile.cpp │ ├── FomodInfoFile.h │ ├── ModuleConfiguration.cpp │ ├── ModuleConfiguration.h │ ├── XmlHelper.h │ └── XmlParseException.h ├── patchwizard └── fomod_plus_patchwizard_de.ts ├── plugindefinition.json ├── scanner ├── CMakeLists.txt ├── FomodPlusScanner.cpp ├── FomodPlusScanner.h ├── fomod_plus_scanner_de.ts ├── fomod_plus_scanner_en.ts ├── fomod_plus_scanner_zh_CN.ts ├── fomodplusscanner.json ├── resources.qrc └── resources │ ├── fomod_icon.png │ └── wizard.gif ├── share └── stringutil.h ├── tests ├── CMakeLists.txt ├── moduleconf │ ├── test_moduleconf_bos.cpp │ ├── test_moduleconf_bos.xml │ ├── test_moduleconf_citytrees.cpp │ ├── test_moduleconf_citytrees.xml │ ├── test_moduleconf_embers.cpp │ ├── test_moduleconf_embers.xml │ ├── test_moduleconf_lux.cpp │ ├── test_moduleconf_lux.xml │ ├── test_moduleconf_miniembers.cpp │ ├── test_moduleconf_miniembers.xml │ ├── test_moduleconf_precision.cpp │ ├── test_moduleconf_precision.xml │ ├── test_moduleconf_xavbio.cpp │ └── test_moduleconf_xavbio.xml ├── test_fomod.xml ├── test_fomod_info_file.cpp └── test_stringutil.cpp ├── vcpkg-configuration.json └── vcpkg.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/.clang-format -------------------------------------------------------------------------------- /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/README.md -------------------------------------------------------------------------------- /cmake/patch_pugixml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/cmake/patch_pugixml.cmake -------------------------------------------------------------------------------- /compile_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/compile_commands.json -------------------------------------------------------------------------------- /copy_translations.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/copy_translations.cmake -------------------------------------------------------------------------------- /doc/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/doc/content.png -------------------------------------------------------------------------------- /doc/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/doc/filter.png -------------------------------------------------------------------------------- /doc/scanner-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/doc/scanner-menu.png -------------------------------------------------------------------------------- /doc/scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/doc/scanner.png -------------------------------------------------------------------------------- /fomod_plus.proj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/fomod_plus.proj.DotSettings -------------------------------------------------------------------------------- /installer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/CMakeLists.txt -------------------------------------------------------------------------------- /installer/FomodInstallerWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/FomodInstallerWindow.cpp -------------------------------------------------------------------------------- /installer/FomodInstallerWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/FomodInstallerWindow.h -------------------------------------------------------------------------------- /installer/FomodPlusInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/FomodPlusInstaller.cpp -------------------------------------------------------------------------------- /installer/FomodPlusInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/FomodPlusInstaller.h -------------------------------------------------------------------------------- /installer/fomod_plus_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/fomod_plus_de.ts -------------------------------------------------------------------------------- /installer/fomod_plus_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/fomod_plus_en.ts -------------------------------------------------------------------------------- /installer/fomod_plus_installer_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/fomod_plus_installer_de.ts -------------------------------------------------------------------------------- /installer/fomod_plus_installer_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/fomod_plus_installer_en.ts -------------------------------------------------------------------------------- /installer/fomod_plus_installer_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/fomod_plus_installer_zh_CN.ts -------------------------------------------------------------------------------- /installer/fomod_plus_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/fomod_plus_zh_CN.ts -------------------------------------------------------------------------------- /installer/fomodplus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/fomodplus.json -------------------------------------------------------------------------------- /installer/integration/FomodDataContent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/integration/FomodDataContent.cpp -------------------------------------------------------------------------------- /installer/integration/FomodDataContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/integration/FomodDataContent.h -------------------------------------------------------------------------------- /installer/lib/ConditionTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/lib/ConditionTester.cpp -------------------------------------------------------------------------------- /installer/lib/ConditionTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/lib/ConditionTester.h -------------------------------------------------------------------------------- /installer/lib/CrashHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/lib/CrashHandler.cpp -------------------------------------------------------------------------------- /installer/lib/CrashHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/lib/CrashHandler.h -------------------------------------------------------------------------------- /installer/lib/FileInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/lib/FileInstaller.cpp -------------------------------------------------------------------------------- /installer/lib/FileInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/lib/FileInstaller.h -------------------------------------------------------------------------------- /installer/lib/FlagMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/lib/FlagMap.h -------------------------------------------------------------------------------- /installer/lib/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/lib/Logger.h -------------------------------------------------------------------------------- /installer/lib/ViewModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/lib/ViewModels.h -------------------------------------------------------------------------------- /installer/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/resources.qrc -------------------------------------------------------------------------------- /installer/resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/resources/delete.png -------------------------------------------------------------------------------- /installer/resources/fomod_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/resources/fomod_icon.png -------------------------------------------------------------------------------- /installer/resources/image_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/resources/image_icon.png -------------------------------------------------------------------------------- /installer/resources/left-chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/resources/left-chevron.png -------------------------------------------------------------------------------- /installer/resources/right-chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/resources/right-chevron.png -------------------------------------------------------------------------------- /installer/ui/ClickableWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/ui/ClickableWidget.h -------------------------------------------------------------------------------- /installer/ui/Colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/ui/Colors.h -------------------------------------------------------------------------------- /installer/ui/FomodImageViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/ui/FomodImageViewer.cpp -------------------------------------------------------------------------------- /installer/ui/FomodImageViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/ui/FomodImageViewer.h -------------------------------------------------------------------------------- /installer/ui/FomodViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/ui/FomodViewModel.cpp -------------------------------------------------------------------------------- /installer/ui/FomodViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/ui/FomodViewModel.h -------------------------------------------------------------------------------- /installer/ui/ScaleLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/ui/ScaleLabel.cpp -------------------------------------------------------------------------------- /installer/ui/ScaleLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/ui/ScaleLabel.h -------------------------------------------------------------------------------- /installer/ui/UIHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/ui/UIHelper.cpp -------------------------------------------------------------------------------- /installer/ui/UIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/ui/UIHelper.h -------------------------------------------------------------------------------- /installer/xml/FomodInfoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/xml/FomodInfoFile.cpp -------------------------------------------------------------------------------- /installer/xml/FomodInfoFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/xml/FomodInfoFile.h -------------------------------------------------------------------------------- /installer/xml/ModuleConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/xml/ModuleConfiguration.cpp -------------------------------------------------------------------------------- /installer/xml/ModuleConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/xml/ModuleConfiguration.h -------------------------------------------------------------------------------- /installer/xml/XmlHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/xml/XmlHelper.h -------------------------------------------------------------------------------- /installer/xml/XmlParseException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/installer/xml/XmlParseException.h -------------------------------------------------------------------------------- /patchwizard/fomod_plus_patchwizard_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/patchwizard/fomod_plus_patchwizard_de.ts -------------------------------------------------------------------------------- /plugindefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/plugindefinition.json -------------------------------------------------------------------------------- /scanner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/scanner/CMakeLists.txt -------------------------------------------------------------------------------- /scanner/FomodPlusScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/scanner/FomodPlusScanner.cpp -------------------------------------------------------------------------------- /scanner/FomodPlusScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/scanner/FomodPlusScanner.h -------------------------------------------------------------------------------- /scanner/fomod_plus_scanner_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/scanner/fomod_plus_scanner_de.ts -------------------------------------------------------------------------------- /scanner/fomod_plus_scanner_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/scanner/fomod_plus_scanner_en.ts -------------------------------------------------------------------------------- /scanner/fomod_plus_scanner_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/scanner/fomod_plus_scanner_zh_CN.ts -------------------------------------------------------------------------------- /scanner/fomodplusscanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/scanner/fomodplusscanner.json -------------------------------------------------------------------------------- /scanner/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/scanner/resources.qrc -------------------------------------------------------------------------------- /scanner/resources/fomod_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/scanner/resources/fomod_icon.png -------------------------------------------------------------------------------- /scanner/resources/wizard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/scanner/resources/wizard.gif -------------------------------------------------------------------------------- /share/stringutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/share/stringutil.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_bos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_bos.cpp -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_bos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_bos.xml -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_citytrees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_citytrees.cpp -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_citytrees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_citytrees.xml -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_embers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_embers.cpp -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_embers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_embers.xml -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_lux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_lux.cpp -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_lux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_lux.xml -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_miniembers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_miniembers.cpp -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_miniembers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_miniembers.xml -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_precision.cpp -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_precision.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_precision.xml -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_xavbio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_xavbio.cpp -------------------------------------------------------------------------------- /tests/moduleconf/test_moduleconf_xavbio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/moduleconf/test_moduleconf_xavbio.xml -------------------------------------------------------------------------------- /tests/test_fomod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/test_fomod.xml -------------------------------------------------------------------------------- /tests/test_fomod_info_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/test_fomod_info_file.cpp -------------------------------------------------------------------------------- /tests/test_stringutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/tests/test_stringutil.cpp -------------------------------------------------------------------------------- /vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/vcpkg-configuration.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aglowinthefield/mo2-fomod-plus/HEAD/vcpkg.json --------------------------------------------------------------------------------