mirror of
				https://github.com/kevinporetti/UnrealImGui.git
				synced 2025-11-03 23:33:16 +00:00 
			
		
		
		
	- Removed explicit PCH. - Fixed includes to compile for all supported engine versions, including non-unity builds. - Configured build.cs to treat ImGui as an engine module and added stricter compilation rules.
		
			
				
	
	
		
			18 lines
		
	
	
		
			428 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			428 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// Distributed under the MIT License (MIT) (see accompanying LICENSE file)
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
struct ImGuiContext;
 | 
						|
 | 
						|
// Gives access to selected ImGui implementation features.
 | 
						|
namespace ImGuiImplementation
 | 
						|
{
 | 
						|
#if WITH_EDITOR
 | 
						|
	// Get the handle to the ImGui Context pointer.
 | 
						|
	ImGuiContext** GetImGuiContextHandle();
 | 
						|
 | 
						|
	// Set the ImGui Context pointer handle.
 | 
						|
	void SetImGuiContextHandle(ImGuiContext** Handle);
 | 
						|
#endif // WITH_EDITOR
 | 
						|
}
 |