Files
UnrealEngineUWP/Engine/Plugins/Slate/SlateScripting/Source/SlateScriptingCommands/Public/SlateScriptingCommandsModule.h
anatole menichetti 96a1a229e0 Fix SlateSriptingCommand module - Compilation error in CL 17735741
#ROBOMERGE-AUTHOR: anatole.menichetti
#ROBOMERGE-SOURCE: CL 17741914 in //UE5/Main/...
#ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v879-17706426)

[CL 17741933 by anatole menichetti in ue5-release-engine-test branch]
2021-10-06 17:30:08 -04:00

16 lines
357 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleManager.h"
class FSlateScriptingCommandsModule : public IModuleInterface
{
public:
//~ Begin IModuleInterface interface
virtual void StartupModule() override;
virtual void ShutdownModule() override;
//~ End IModuleInterface interface
};