mirror of
https://github.com/kevinporetti/UnrealImGui.git
synced 2025-01-19 08:50:31 +00:00
17 lines
407 B
C
17 lines
407 B
C
|
// Distributed under the MIT License (MIT) (see accompanying LICENSE file)
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
class FImGuiModuleManager;
|
||
|
class UGameViewportClient;
|
||
|
class UImGuiInputHandler;
|
||
|
|
||
|
class FImGuiInputHandlerFactory
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
static UImGuiInputHandler* NewHandler(FImGuiModuleManager* ModuleManager, UGameViewportClient* GameViewport, int32 ContextIndex);
|
||
|
|
||
|
static void ReleaseHandler(UImGuiInputHandler* Handler);
|
||
|
};
|