Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

23 lines
506 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "GameFramework/CheatManager.h"
#include "SlateIMInGameWidgetCheatManager.generated.h"
UCLASS()
class USlateIMInGameWidgetCheatManager : public UCheatManagerExtension
{
GENERATED_BODY()
public:
USlateIMInGameWidgetCheatManager();
UFUNCTION(Exec)
void ToggleSlateIMInGameWidget(const FString& Path) const;
private:
UFUNCTION(Exec)
void EnableInGameWidgetFromClass(const FString& ClassPath, const bool bEnable) const;
};