├── ClickableTransparentOverlay.dll ├── Data └── StatDescriptions │ ├── atlas_stat_descriptions.json │ ├── expedition_relic_stat_descriptions.json │ └── stat_descriptions.json ├── ExileCore2.deps.json ├── ExileCore2.dll ├── ExileCore2.runtimeconfig.json ├── GameOffsets2.dll ├── Google.Protobuf.dll ├── Grpc.Core.Api.dll ├── Grpc.Net.Client.dll ├── Grpc.Net.Common.dll ├── ImGui.NET.dll ├── ItemFilterLibrary.deps.json ├── ItemFilterLibrary.dll ├── ItemFilterLibrary.runtimeconfig.json ├── JM.LinqFaster.dll ├── Loader.deps.json ├── Loader.dll ├── Loader.dll.config ├── Loader.exe ├── Loader.runtimeconfig.json ├── Microsoft.Build.Locator.dll ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll ├── Microsoft.CodeAnalysis.CSharp.dll ├── Microsoft.CodeAnalysis.Scripting.dll ├── Microsoft.CodeAnalysis.dll ├── Microsoft.Extensions.Logging.Abstractions.dll ├── MoreLinq.dll ├── NAudio.Asio.dll ├── NAudio.Core.dll ├── NAudio.Midi.dll ├── NAudio.Wasapi.dll ├── NAudio.WinForms.dll ├── NAudio.WinMM.dll ├── NAudio.dll ├── Newtonsoft.Json.dll ├── Plugins ├── Compiled │ ├── DevTree │ │ ├── DevTree.deps.json │ │ └── DevTree.dll │ └── PluginUpdater │ │ ├── LibGit2Sharp.dll │ │ ├── PluginUpdater.deps.json │ │ ├── PluginUpdater.dll │ │ └── git2-3f4182d.dll ├── exCore2.Plugin.Template.2.0.0.nupkg └── howto.txt ├── ProcessMemoryUtilities.dll ├── Serilog.Sinks.File.dll ├── Serilog.dll ├── SharpGen.Runtime.COM.dll ├── SharpGen.Runtime.dll ├── SixLabors.ImageSharp.dll ├── Sounds ├── alert.wav ├── attention.wav ├── beast.wav ├── bomb.wav ├── corrupted.wav ├── danger.wav ├── elemental.wav ├── physical.wav ├── treasure.wav └── volatile.wav ├── System.Diagnostics.EventLog.Messages.dll ├── System.Linq.Dynamic.Core.dll ├── System.Runtime.Caching.dll ├── Vanara.Core.dll ├── Vanara.PInvoke.ComDlg32.dll ├── Vanara.PInvoke.DwmApi.dll ├── Vanara.PInvoke.Gdi32.dll ├── Vanara.PInvoke.Kernel32.dll ├── Vanara.PInvoke.Multimedia.dll ├── Vanara.PInvoke.Shared.dll ├── Vanara.PInvoke.User32.dll ├── Vortice.D3DCompiler.dll ├── Vortice.DXGI.dll ├── Vortice.Direct3D11.dll ├── Vortice.DirectX.dll ├── Vortice.Mathematics.dll ├── cimgui.dll ├── fonts └── unifont.otf ├── sig.bin └── textures ├── Icons.png ├── directions.png ├── icon.ico ├── menu-background.png ├── missing_texture.png └── sprites.png /ClickableTransparentOverlay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/ClickableTransparentOverlay.dll -------------------------------------------------------------------------------- /Data/StatDescriptions/atlas_stat_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Data/StatDescriptions/atlas_stat_descriptions.json -------------------------------------------------------------------------------- /Data/StatDescriptions/expedition_relic_stat_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Data/StatDescriptions/expedition_relic_stat_descriptions.json -------------------------------------------------------------------------------- /Data/StatDescriptions/stat_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Data/StatDescriptions/stat_descriptions.json -------------------------------------------------------------------------------- /ExileCore2.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/ExileCore2.deps.json -------------------------------------------------------------------------------- /ExileCore2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/ExileCore2.dll -------------------------------------------------------------------------------- /ExileCore2.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/ExileCore2.runtimeconfig.json -------------------------------------------------------------------------------- /GameOffsets2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/GameOffsets2.dll -------------------------------------------------------------------------------- /Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Google.Protobuf.dll -------------------------------------------------------------------------------- /Grpc.Core.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Grpc.Core.Api.dll -------------------------------------------------------------------------------- /Grpc.Net.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Grpc.Net.Client.dll -------------------------------------------------------------------------------- /Grpc.Net.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Grpc.Net.Common.dll -------------------------------------------------------------------------------- /ImGui.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/ImGui.NET.dll -------------------------------------------------------------------------------- /ItemFilterLibrary.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/ItemFilterLibrary.deps.json -------------------------------------------------------------------------------- /ItemFilterLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/ItemFilterLibrary.dll -------------------------------------------------------------------------------- /ItemFilterLibrary.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/ItemFilterLibrary.runtimeconfig.json -------------------------------------------------------------------------------- /JM.LinqFaster.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/JM.LinqFaster.dll -------------------------------------------------------------------------------- /Loader.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Loader.deps.json -------------------------------------------------------------------------------- /Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Loader.dll -------------------------------------------------------------------------------- /Loader.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Loader.dll.config -------------------------------------------------------------------------------- /Loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Loader.exe -------------------------------------------------------------------------------- /Loader.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Loader.runtimeconfig.json -------------------------------------------------------------------------------- /Microsoft.Build.Locator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Microsoft.Build.Locator.dll -------------------------------------------------------------------------------- /Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /MoreLinq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/MoreLinq.dll -------------------------------------------------------------------------------- /NAudio.Asio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/NAudio.Asio.dll -------------------------------------------------------------------------------- /NAudio.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/NAudio.Core.dll -------------------------------------------------------------------------------- /NAudio.Midi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/NAudio.Midi.dll -------------------------------------------------------------------------------- /NAudio.Wasapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/NAudio.Wasapi.dll -------------------------------------------------------------------------------- /NAudio.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/NAudio.WinForms.dll -------------------------------------------------------------------------------- /NAudio.WinMM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/NAudio.WinMM.dll -------------------------------------------------------------------------------- /NAudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/NAudio.dll -------------------------------------------------------------------------------- /Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Plugins/Compiled/DevTree/DevTree.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Plugins/Compiled/DevTree/DevTree.deps.json -------------------------------------------------------------------------------- /Plugins/Compiled/DevTree/DevTree.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Plugins/Compiled/DevTree/DevTree.dll -------------------------------------------------------------------------------- /Plugins/Compiled/PluginUpdater/LibGit2Sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Plugins/Compiled/PluginUpdater/LibGit2Sharp.dll -------------------------------------------------------------------------------- /Plugins/Compiled/PluginUpdater/PluginUpdater.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Plugins/Compiled/PluginUpdater/PluginUpdater.deps.json -------------------------------------------------------------------------------- /Plugins/Compiled/PluginUpdater/PluginUpdater.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Plugins/Compiled/PluginUpdater/PluginUpdater.dll -------------------------------------------------------------------------------- /Plugins/Compiled/PluginUpdater/git2-3f4182d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Plugins/Compiled/PluginUpdater/git2-3f4182d.dll -------------------------------------------------------------------------------- /Plugins/exCore2.Plugin.Template.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Plugins/exCore2.Plugin.Template.2.0.0.nupkg -------------------------------------------------------------------------------- /Plugins/howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Plugins/howto.txt -------------------------------------------------------------------------------- /ProcessMemoryUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/ProcessMemoryUtilities.dll -------------------------------------------------------------------------------- /Serilog.Sinks.File.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Serilog.Sinks.File.dll -------------------------------------------------------------------------------- /Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Serilog.dll -------------------------------------------------------------------------------- /SharpGen.Runtime.COM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/SharpGen.Runtime.COM.dll -------------------------------------------------------------------------------- /SharpGen.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/SharpGen.Runtime.dll -------------------------------------------------------------------------------- /SixLabors.ImageSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/SixLabors.ImageSharp.dll -------------------------------------------------------------------------------- /Sounds/alert.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Sounds/alert.wav -------------------------------------------------------------------------------- /Sounds/attention.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Sounds/attention.wav -------------------------------------------------------------------------------- /Sounds/beast.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Sounds/beast.wav -------------------------------------------------------------------------------- /Sounds/bomb.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Sounds/bomb.wav -------------------------------------------------------------------------------- /Sounds/corrupted.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Sounds/corrupted.wav -------------------------------------------------------------------------------- /Sounds/danger.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Sounds/danger.wav -------------------------------------------------------------------------------- /Sounds/elemental.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Sounds/elemental.wav -------------------------------------------------------------------------------- /Sounds/physical.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Sounds/physical.wav -------------------------------------------------------------------------------- /Sounds/treasure.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Sounds/treasure.wav -------------------------------------------------------------------------------- /Sounds/volatile.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Sounds/volatile.wav -------------------------------------------------------------------------------- /System.Diagnostics.EventLog.Messages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/System.Diagnostics.EventLog.Messages.dll -------------------------------------------------------------------------------- /System.Linq.Dynamic.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/System.Linq.Dynamic.Core.dll -------------------------------------------------------------------------------- /System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /Vanara.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vanara.Core.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.ComDlg32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vanara.PInvoke.ComDlg32.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.DwmApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vanara.PInvoke.DwmApi.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.Gdi32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vanara.PInvoke.Gdi32.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.Kernel32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vanara.PInvoke.Kernel32.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.Multimedia.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vanara.PInvoke.Multimedia.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vanara.PInvoke.Shared.dll -------------------------------------------------------------------------------- /Vanara.PInvoke.User32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vanara.PInvoke.User32.dll -------------------------------------------------------------------------------- /Vortice.D3DCompiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vortice.D3DCompiler.dll -------------------------------------------------------------------------------- /Vortice.DXGI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vortice.DXGI.dll -------------------------------------------------------------------------------- /Vortice.Direct3D11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vortice.Direct3D11.dll -------------------------------------------------------------------------------- /Vortice.DirectX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vortice.DirectX.dll -------------------------------------------------------------------------------- /Vortice.Mathematics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/Vortice.Mathematics.dll -------------------------------------------------------------------------------- /cimgui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/cimgui.dll -------------------------------------------------------------------------------- /fonts/unifont.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/fonts/unifont.otf -------------------------------------------------------------------------------- /sig.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/sig.bin -------------------------------------------------------------------------------- /textures/Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/textures/Icons.png -------------------------------------------------------------------------------- /textures/directions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/textures/directions.png -------------------------------------------------------------------------------- /textures/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/textures/icon.ico -------------------------------------------------------------------------------- /textures/menu-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/textures/menu-background.png -------------------------------------------------------------------------------- /textures/missing_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/textures/missing_texture.png -------------------------------------------------------------------------------- /textures/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exCore2/ExileCore2/HEAD/textures/sprites.png --------------------------------------------------------------------------------