minor hack in order to force copy NativeLibraryLoader dll

master
Zaafar Ahmed 7 years ago
parent 2e5fb08a3b
commit 7c5327b618
  1. 5
      ClickableTransparentOverlay/ImGuiController.cs

@ -8,6 +8,7 @@
using Veldrid;
using System.Runtime.CompilerServices;
using ImGuiNET;
using NativeLibraryLoader;
/// <summary>
/// A modified version of ImGui.NET.SampleProgram's ImGuiController.
@ -47,6 +48,10 @@
private readonly List<IDisposable> _ownedResources = new List<IDisposable>();
private int _lastAssignedID = 100;
#pragma warning disable CS0169 // Force Copy this DLL
private static DefaultPathResolver ___;
#pragma warning restore CS0169
/// <summary>
/// Constructs a new ImGuiController.
/// </summary>

Loading…
Cancel
Save