gitextract_o302_dsd/ ├── .actrc ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── -game--bug-report.md │ │ └── feature_request.md │ ├── actions/ │ │ ├── setup-os/ │ │ │ └── action.yml │ │ └── setup-tooling/ │ │ ├── README.md │ │ └── action.yml │ └── workflows/ │ ├── pr-title.yml │ └── release.yml ├── .gitignore ├── .tool-versions ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Doxyfile ├── LICENSE ├── Lampray/ │ ├── Base/ │ │ └── lampBase.h │ ├── Control/ │ │ ├── lampConfig.cpp │ │ ├── lampConfig.h │ │ ├── lampControl.cpp │ │ ├── lampControl.h │ │ ├── lampGames.h │ │ └── lampNotification.h │ ├── Filesystem/ │ │ ├── lampExtract.cpp │ │ ├── lampFS.h │ │ ├── lampIO.cpp │ │ ├── lampShare.cpp │ │ ├── lampTrack.cpp │ │ └── lampUpdate.cpp │ ├── Lang/ │ │ └── lampLang.h │ ├── Menu/ │ │ ├── lampCustomise.h │ │ ├── lampMenu.cpp │ │ └── lampMenu.h │ └── Parse/ │ └── lampParse.h ├── README.md ├── VERSION ├── build.sh ├── docs/ │ ├── building-from-source.md │ ├── customizing-lampray.md │ ├── directory-structure.md │ ├── frequently-asked-questions.md │ ├── lampray-docs.md │ ├── managing-mods.md │ └── mod-types/ │ ├── baldurs-gate-3.md │ ├── cyberpunk-2077.md │ └── supported-games.md ├── game-data/ │ ├── BG3/ │ │ ├── BG3.cpp │ │ └── BG3.h │ ├── C77/ │ │ ├── C77.cpp │ │ └── C77.h │ ├── LHL/ │ │ ├── LHL.cpp │ │ └── LHL.h │ └── gameControl.h ├── main.cpp ├── setup.sh └── third-party/ ├── bit7z/ │ ├── BUILD.txt │ ├── LICENSE │ ├── README.md │ ├── include/ │ │ └── include/ │ │ └── bit7z/ │ │ ├── bit7z.hpp │ │ ├── bit7zlibrary.hpp │ │ ├── bitabstractarchivecreator.hpp │ │ ├── bitabstractarchivehandler.hpp │ │ ├── bitabstractarchiveopener.hpp │ │ ├── bitarchiveeditor.hpp │ │ ├── bitarchiveitem.hpp │ │ ├── bitarchiveiteminfo.hpp │ │ ├── bitarchiveitemoffset.hpp │ │ ├── bitarchivereader.hpp │ │ ├── bitarchivewriter.hpp │ │ ├── bitcompressionlevel.hpp │ │ ├── bitcompressionmethod.hpp │ │ ├── bitcompressor.hpp │ │ ├── bitdefines.hpp │ │ ├── biterror.hpp │ │ ├── bitexception.hpp │ │ ├── bitextractor.hpp │ │ ├── bitfilecompressor.hpp │ │ ├── bitfileextractor.hpp │ │ ├── bitformat.hpp │ │ ├── bitfs.hpp │ │ ├── bitgenericitem.hpp │ │ ├── bitinputarchive.hpp │ │ ├── bititemsvector.hpp │ │ ├── bitmemcompressor.hpp │ │ ├── bitmemextractor.hpp │ │ ├── bitoutputarchive.hpp │ │ ├── bitpropvariant.hpp │ │ ├── bitstreamcompressor.hpp │ │ ├── bitstreamextractor.hpp │ │ ├── bittypes.hpp │ │ └── bitwindows.hpp │ └── lib/ │ └── x64/ │ ├── libbit7z64.a │ └── libbit7z64_d.a ├── imgui/ │ ├── LICENSE.txt │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_sdl2.cpp │ ├── imgui_impl_sdl2.h │ ├── imgui_impl_sdlrenderer2.cpp │ ├── imgui_impl_sdlrenderer2.h │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── json/ │ ├── LICENSE.MIT │ └── json.hpp ├── l4z/ │ ├── LICENSE │ ├── liblz4.a │ ├── liblz4.pc │ ├── liblz4.pc.in │ ├── lz4.c │ ├── lz4.h │ ├── lz4file.c │ ├── lz4file.h │ ├── lz4frame.c │ ├── lz4frame.h │ ├── lz4frame_static.h │ ├── lz4hc.c │ ├── lz4hc.h │ ├── xxhash.c │ └── xxhash.h ├── nfd/ │ ├── .circleci/ │ │ └── config.yml │ ├── .clang-format │ ├── .github/ │ │ └── workflows/ │ │ └── cmake.yml │ ├── .gitignore │ ├── include/ │ │ └── nfd.h │ └── lib/ │ └── libnfd.a └── pugixml/ ├── CMakeLists.txt ├── LICENSE.md ├── readme.txt ├── scripts/ │ ├── cocoapods_push.sh │ ├── natvis/ │ │ ├── pugixml.natvis │ │ └── pugixml_compact.natvis │ ├── nuget/ │ │ └── pugixml.nuspec │ ├── nuget_build.ps1 │ ├── premake4.lua │ ├── pugixml-config.cmake.in │ ├── pugixml.pc.in │ ├── pugixml.podspec │ ├── pugixml.xcodeproj/ │ │ └── project.pbxproj │ ├── pugixml_airplay.mkf │ ├── pugixml_codeblocks.cbp │ ├── pugixml_codelite.project │ ├── pugixml_dll.rc │ ├── pugixml_vs2005.vcproj │ ├── pugixml_vs2005_static.vcproj │ ├── pugixml_vs2008.vcproj │ ├── pugixml_vs2008_static.vcproj │ ├── pugixml_vs2010.vcxproj │ ├── pugixml_vs2010_static.vcxproj │ ├── pugixml_vs2013.vcxproj │ ├── pugixml_vs2013_static.vcxproj │ ├── pugixml_vs2015.vcxproj │ ├── pugixml_vs2015_static.vcxproj │ ├── pugixml_vs2017.vcxproj │ ├── pugixml_vs2017_static.vcxproj │ ├── pugixml_vs2019.vcxproj │ ├── pugixml_vs2019_static.vcxproj │ ├── pugixml_vs2022.vcxproj │ └── pugixml_vs2022_static.vcxproj └── src/ ├── pugiconfig.hpp ├── pugixml.cpp └── pugixml.hpp