├── .clang-format ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── standard-issue.md └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .mailmap ├── BUILD.md ├── CODE_GUIDELINES.md ├── LICENSE ├── README.md ├── ThirdParty_LICENSES ├── clang_format.py ├── fonts ├── NotoSans-Regular.ttf ├── NotoSansJP-Regular.otf ├── NotoSansKR-Regular.otf ├── NotoSansMono-Regular.ttf ├── NotoSansSC-Regular.otf ├── NotoSansTC-Regular.otf ├── NotoSansThai-Regular.ttf └── materialdesignicons.ttf ├── scripts ├── IconGlyphs │ └── icons.lua └── json │ ├── LICENSE │ ├── README.md │ └── json.lua ├── src ├── CET.cpp ├── CET.h ├── Image.cpp ├── Image.h ├── Options.cpp ├── Options.h ├── Paths.cpp ├── Paths.h ├── PersistentState.cpp ├── PersistentState.h ├── Utils.cpp ├── Utils.h ├── VKBindings.cpp ├── VKBindings.h ├── common │ ├── D3D12Downlevel.h │ ├── FontMaterialDesignIcons.h │ ├── ImGuiNotify.h │ ├── Logging.h │ ├── Meta.h │ └── ScopeGuard.h ├── d3d12 │ ├── D3D12.cpp │ ├── D3D12.h │ ├── D3D12_Functions.cpp │ └── D3D12_Hooks.cpp ├── dllmain.cpp ├── imgui_impl │ ├── dx12.cpp │ ├── dx12.h │ ├── imgui_user_config.cpp │ ├── imgui_user_config.h │ ├── win32.cpp │ └── win32.h ├── lsqlite3 │ ├── HISTORY │ ├── README │ ├── lsqlite3.cpp │ └── lsqlite3.h ├── overlay │ ├── Overlay.cpp │ ├── Overlay.h │ └── widgets │ │ ├── Bindings.cpp │ │ ├── Bindings.h │ │ ├── Console.cpp │ │ ├── Console.h │ │ ├── GameLog.cpp │ │ ├── GameLog.h │ │ ├── ImGuiDebug.cpp │ │ ├── ImGuiDebug.h │ │ ├── LogWindow.cpp │ │ ├── LogWindow.h │ │ ├── Settings.cpp │ │ ├── Settings.h │ │ ├── TweakDBEditor.cpp │ │ ├── TweakDBEditor.h │ │ ├── Widget.cpp │ │ └── Widget.h ├── patches │ ├── DisableBoundaries.cpp │ ├── DisableVignette.cpp │ └── OptionsPatch.cpp ├── reverse │ ├── Addresses.h │ ├── Array.h │ ├── BasicTypes.cpp │ ├── BasicTypes.h │ ├── ClassReference.cpp │ ├── ClassReference.h │ ├── ClassStatic.cpp │ ├── ClassStatic.h │ ├── Converter.cpp │ ├── Converter.h │ ├── Enum.cpp │ ├── Enum.h │ ├── EnumStatic.cpp │ ├── EnumStatic.h │ ├── LuaRED.h │ ├── NativeProxy.cpp │ ├── NativeProxy.h │ ├── RTTIExtender.cpp │ ├── RTTIExtender.h │ ├── RTTIHelper.cpp │ ├── RTTIHelper.h │ ├── RTTILocator.cpp │ ├── RTTILocator.h │ ├── RTTIMapper.cpp │ ├── RTTIMapper.h │ ├── Relocation.h │ ├── RenderContext.cpp │ ├── RenderContext.h │ ├── ResourceAsyncReference.cpp │ ├── ResourceAsyncReference.h │ ├── SingletonReference.cpp │ ├── SingletonReference.h │ ├── StrongReference.cpp │ ├── StrongReference.h │ ├── TweakDB │ │ ├── FlatPool.cpp │ │ ├── FlatPool.h │ │ ├── ResourcesList.cpp │ │ ├── ResourcesList.h │ │ ├── TweakDB.cpp │ │ └── TweakDB.h │ ├── Type.cpp │ ├── Type.h │ ├── WeakReference.cpp │ └── WeakReference.h ├── scripting │ ├── FunctionOverride.cpp │ ├── FunctionOverride.h │ ├── GameDump.cpp │ ├── GameDump.h │ ├── GameHooks.cpp │ ├── GameHooks.h │ ├── GameOptions.cpp │ ├── GameOptions.h │ ├── LuaSandbox.cpp │ ├── LuaSandbox.h │ ├── LuaVM.cpp │ ├── LuaVM.h │ ├── LuaVM_Hooks.cpp │ ├── Sandbox.cpp │ ├── Sandbox.h │ ├── ScriptContext.cpp │ ├── ScriptContext.h │ ├── ScriptStore.cpp │ ├── ScriptStore.h │ ├── Scripting.cpp │ ├── Scripting.h │ ├── Texture.cpp │ └── Texture.h ├── sol_imgui │ ├── LICENSE │ ├── README.md │ └── sol_imgui.h ├── stdafx.h ├── window │ ├── window.cpp │ └── window.h └── xmake │ ├── CETVersion.h.in │ └── Resource.rc.in ├── vendor └── asiloader │ ├── global.ini │ └── version.dll └── xmake.lua /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: tiltedphoques 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/standard-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/.github/ISSUE_TEMPLATE/standard-issue.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/.mailmap -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/BUILD.md -------------------------------------------------------------------------------- /CODE_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/CODE_GUIDELINES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/README.md -------------------------------------------------------------------------------- /ThirdParty_LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/ThirdParty_LICENSES -------------------------------------------------------------------------------- /clang_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/clang_format.py -------------------------------------------------------------------------------- /fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/NotoSansJP-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/fonts/NotoSansJP-Regular.otf -------------------------------------------------------------------------------- /fonts/NotoSansKR-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/fonts/NotoSansKR-Regular.otf -------------------------------------------------------------------------------- /fonts/NotoSansMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/fonts/NotoSansMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/NotoSansSC-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/fonts/NotoSansSC-Regular.otf -------------------------------------------------------------------------------- /fonts/NotoSansTC-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/fonts/NotoSansTC-Regular.otf -------------------------------------------------------------------------------- /fonts/NotoSansThai-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/fonts/NotoSansThai-Regular.ttf -------------------------------------------------------------------------------- /fonts/materialdesignicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/fonts/materialdesignicons.ttf -------------------------------------------------------------------------------- /scripts/IconGlyphs/icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/scripts/IconGlyphs/icons.lua -------------------------------------------------------------------------------- /scripts/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/scripts/json/LICENSE -------------------------------------------------------------------------------- /scripts/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/scripts/json/README.md -------------------------------------------------------------------------------- /scripts/json/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/scripts/json/json.lua -------------------------------------------------------------------------------- /src/CET.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/CET.cpp -------------------------------------------------------------------------------- /src/CET.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/CET.h -------------------------------------------------------------------------------- /src/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/Image.cpp -------------------------------------------------------------------------------- /src/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/Image.h -------------------------------------------------------------------------------- /src/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/Options.cpp -------------------------------------------------------------------------------- /src/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/Options.h -------------------------------------------------------------------------------- /src/Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/Paths.cpp -------------------------------------------------------------------------------- /src/Paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/Paths.h -------------------------------------------------------------------------------- /src/PersistentState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/PersistentState.cpp -------------------------------------------------------------------------------- /src/PersistentState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/PersistentState.h -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/Utils.h -------------------------------------------------------------------------------- /src/VKBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/VKBindings.cpp -------------------------------------------------------------------------------- /src/VKBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/VKBindings.h -------------------------------------------------------------------------------- /src/common/D3D12Downlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/common/D3D12Downlevel.h -------------------------------------------------------------------------------- /src/common/FontMaterialDesignIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/common/FontMaterialDesignIcons.h -------------------------------------------------------------------------------- /src/common/ImGuiNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/common/ImGuiNotify.h -------------------------------------------------------------------------------- /src/common/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/common/Logging.h -------------------------------------------------------------------------------- /src/common/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/common/Meta.h -------------------------------------------------------------------------------- /src/common/ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/common/ScopeGuard.h -------------------------------------------------------------------------------- /src/d3d12/D3D12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/d3d12/D3D12.cpp -------------------------------------------------------------------------------- /src/d3d12/D3D12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/d3d12/D3D12.h -------------------------------------------------------------------------------- /src/d3d12/D3D12_Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/d3d12/D3D12_Functions.cpp -------------------------------------------------------------------------------- /src/d3d12/D3D12_Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/d3d12/D3D12_Hooks.cpp -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/imgui_impl/dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/imgui_impl/dx12.cpp -------------------------------------------------------------------------------- /src/imgui_impl/dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/imgui_impl/dx12.h -------------------------------------------------------------------------------- /src/imgui_impl/imgui_user_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/imgui_impl/imgui_user_config.cpp -------------------------------------------------------------------------------- /src/imgui_impl/imgui_user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/imgui_impl/imgui_user_config.h -------------------------------------------------------------------------------- /src/imgui_impl/win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/imgui_impl/win32.cpp -------------------------------------------------------------------------------- /src/imgui_impl/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/imgui_impl/win32.h -------------------------------------------------------------------------------- /src/lsqlite3/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/lsqlite3/HISTORY -------------------------------------------------------------------------------- /src/lsqlite3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/lsqlite3/README -------------------------------------------------------------------------------- /src/lsqlite3/lsqlite3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/lsqlite3/lsqlite3.cpp -------------------------------------------------------------------------------- /src/lsqlite3/lsqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/lsqlite3/lsqlite3.h -------------------------------------------------------------------------------- /src/overlay/Overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/Overlay.cpp -------------------------------------------------------------------------------- /src/overlay/Overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/Overlay.h -------------------------------------------------------------------------------- /src/overlay/widgets/Bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/Bindings.cpp -------------------------------------------------------------------------------- /src/overlay/widgets/Bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/Bindings.h -------------------------------------------------------------------------------- /src/overlay/widgets/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/Console.cpp -------------------------------------------------------------------------------- /src/overlay/widgets/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/Console.h -------------------------------------------------------------------------------- /src/overlay/widgets/GameLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/GameLog.cpp -------------------------------------------------------------------------------- /src/overlay/widgets/GameLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/GameLog.h -------------------------------------------------------------------------------- /src/overlay/widgets/ImGuiDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/ImGuiDebug.cpp -------------------------------------------------------------------------------- /src/overlay/widgets/ImGuiDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/ImGuiDebug.h -------------------------------------------------------------------------------- /src/overlay/widgets/LogWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/LogWindow.cpp -------------------------------------------------------------------------------- /src/overlay/widgets/LogWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/LogWindow.h -------------------------------------------------------------------------------- /src/overlay/widgets/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/Settings.cpp -------------------------------------------------------------------------------- /src/overlay/widgets/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/Settings.h -------------------------------------------------------------------------------- /src/overlay/widgets/TweakDBEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/TweakDBEditor.cpp -------------------------------------------------------------------------------- /src/overlay/widgets/TweakDBEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/TweakDBEditor.h -------------------------------------------------------------------------------- /src/overlay/widgets/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/Widget.cpp -------------------------------------------------------------------------------- /src/overlay/widgets/Widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/overlay/widgets/Widget.h -------------------------------------------------------------------------------- /src/patches/DisableBoundaries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/patches/DisableBoundaries.cpp -------------------------------------------------------------------------------- /src/patches/DisableVignette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/patches/DisableVignette.cpp -------------------------------------------------------------------------------- /src/patches/OptionsPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/patches/OptionsPatch.cpp -------------------------------------------------------------------------------- /src/reverse/Addresses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/Addresses.h -------------------------------------------------------------------------------- /src/reverse/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/Array.h -------------------------------------------------------------------------------- /src/reverse/BasicTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/BasicTypes.cpp -------------------------------------------------------------------------------- /src/reverse/BasicTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/BasicTypes.h -------------------------------------------------------------------------------- /src/reverse/ClassReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/ClassReference.cpp -------------------------------------------------------------------------------- /src/reverse/ClassReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/ClassReference.h -------------------------------------------------------------------------------- /src/reverse/ClassStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/ClassStatic.cpp -------------------------------------------------------------------------------- /src/reverse/ClassStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/ClassStatic.h -------------------------------------------------------------------------------- /src/reverse/Converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/Converter.cpp -------------------------------------------------------------------------------- /src/reverse/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/Converter.h -------------------------------------------------------------------------------- /src/reverse/Enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/Enum.cpp -------------------------------------------------------------------------------- /src/reverse/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/Enum.h -------------------------------------------------------------------------------- /src/reverse/EnumStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/EnumStatic.cpp -------------------------------------------------------------------------------- /src/reverse/EnumStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/EnumStatic.h -------------------------------------------------------------------------------- /src/reverse/LuaRED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/LuaRED.h -------------------------------------------------------------------------------- /src/reverse/NativeProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/NativeProxy.cpp -------------------------------------------------------------------------------- /src/reverse/NativeProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/NativeProxy.h -------------------------------------------------------------------------------- /src/reverse/RTTIExtender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/RTTIExtender.cpp -------------------------------------------------------------------------------- /src/reverse/RTTIExtender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/RTTIExtender.h -------------------------------------------------------------------------------- /src/reverse/RTTIHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/RTTIHelper.cpp -------------------------------------------------------------------------------- /src/reverse/RTTIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/RTTIHelper.h -------------------------------------------------------------------------------- /src/reverse/RTTILocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/RTTILocator.cpp -------------------------------------------------------------------------------- /src/reverse/RTTILocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/RTTILocator.h -------------------------------------------------------------------------------- /src/reverse/RTTIMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/RTTIMapper.cpp -------------------------------------------------------------------------------- /src/reverse/RTTIMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/RTTIMapper.h -------------------------------------------------------------------------------- /src/reverse/Relocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/Relocation.h -------------------------------------------------------------------------------- /src/reverse/RenderContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/RenderContext.cpp -------------------------------------------------------------------------------- /src/reverse/RenderContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/RenderContext.h -------------------------------------------------------------------------------- /src/reverse/ResourceAsyncReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/ResourceAsyncReference.cpp -------------------------------------------------------------------------------- /src/reverse/ResourceAsyncReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/ResourceAsyncReference.h -------------------------------------------------------------------------------- /src/reverse/SingletonReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/SingletonReference.cpp -------------------------------------------------------------------------------- /src/reverse/SingletonReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/SingletonReference.h -------------------------------------------------------------------------------- /src/reverse/StrongReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/StrongReference.cpp -------------------------------------------------------------------------------- /src/reverse/StrongReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/StrongReference.h -------------------------------------------------------------------------------- /src/reverse/TweakDB/FlatPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/TweakDB/FlatPool.cpp -------------------------------------------------------------------------------- /src/reverse/TweakDB/FlatPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/TweakDB/FlatPool.h -------------------------------------------------------------------------------- /src/reverse/TweakDB/ResourcesList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/TweakDB/ResourcesList.cpp -------------------------------------------------------------------------------- /src/reverse/TweakDB/ResourcesList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/TweakDB/ResourcesList.h -------------------------------------------------------------------------------- /src/reverse/TweakDB/TweakDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/TweakDB/TweakDB.cpp -------------------------------------------------------------------------------- /src/reverse/TweakDB/TweakDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/TweakDB/TweakDB.h -------------------------------------------------------------------------------- /src/reverse/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/Type.cpp -------------------------------------------------------------------------------- /src/reverse/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/Type.h -------------------------------------------------------------------------------- /src/reverse/WeakReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/WeakReference.cpp -------------------------------------------------------------------------------- /src/reverse/WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/reverse/WeakReference.h -------------------------------------------------------------------------------- /src/scripting/FunctionOverride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/FunctionOverride.cpp -------------------------------------------------------------------------------- /src/scripting/FunctionOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/FunctionOverride.h -------------------------------------------------------------------------------- /src/scripting/GameDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/GameDump.cpp -------------------------------------------------------------------------------- /src/scripting/GameDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/GameDump.h -------------------------------------------------------------------------------- /src/scripting/GameHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/GameHooks.cpp -------------------------------------------------------------------------------- /src/scripting/GameHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/GameHooks.h -------------------------------------------------------------------------------- /src/scripting/GameOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/GameOptions.cpp -------------------------------------------------------------------------------- /src/scripting/GameOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/GameOptions.h -------------------------------------------------------------------------------- /src/scripting/LuaSandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/LuaSandbox.cpp -------------------------------------------------------------------------------- /src/scripting/LuaSandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/LuaSandbox.h -------------------------------------------------------------------------------- /src/scripting/LuaVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/LuaVM.cpp -------------------------------------------------------------------------------- /src/scripting/LuaVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/LuaVM.h -------------------------------------------------------------------------------- /src/scripting/LuaVM_Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/LuaVM_Hooks.cpp -------------------------------------------------------------------------------- /src/scripting/Sandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/Sandbox.cpp -------------------------------------------------------------------------------- /src/scripting/Sandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/Sandbox.h -------------------------------------------------------------------------------- /src/scripting/ScriptContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/ScriptContext.cpp -------------------------------------------------------------------------------- /src/scripting/ScriptContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/ScriptContext.h -------------------------------------------------------------------------------- /src/scripting/ScriptStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/ScriptStore.cpp -------------------------------------------------------------------------------- /src/scripting/ScriptStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/ScriptStore.h -------------------------------------------------------------------------------- /src/scripting/Scripting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/Scripting.cpp -------------------------------------------------------------------------------- /src/scripting/Scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/Scripting.h -------------------------------------------------------------------------------- /src/scripting/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/Texture.cpp -------------------------------------------------------------------------------- /src/scripting/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/scripting/Texture.h -------------------------------------------------------------------------------- /src/sol_imgui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/sol_imgui/LICENSE -------------------------------------------------------------------------------- /src/sol_imgui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/sol_imgui/README.md -------------------------------------------------------------------------------- /src/sol_imgui/sol_imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/sol_imgui/sol_imgui.h -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/stdafx.h -------------------------------------------------------------------------------- /src/window/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/window/window.cpp -------------------------------------------------------------------------------- /src/window/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/window/window.h -------------------------------------------------------------------------------- /src/xmake/CETVersion.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/xmake/CETVersion.h.in -------------------------------------------------------------------------------- /src/xmake/Resource.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/src/xmake/Resource.rc.in -------------------------------------------------------------------------------- /vendor/asiloader/global.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/vendor/asiloader/global.ini -------------------------------------------------------------------------------- /vendor/asiloader/version.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/vendor/asiloader/version.dll -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximegmd/CyberEngineTweaks/HEAD/xmake.lua --------------------------------------------------------------------------------