Files
UnrealEngineUWP/Engine/Source/Editor/OverlayEditor/Public/IOverlayEditorModule.h
bryan sefcik 6b25671172 Fixed -NoPCH -DisableUnity compile issues.
#preflight 62d05ea58e4b379590a66dab

[CL 21095519 by bryan sefcik in ue5-main branch]
2022-07-14 14:54:07 -04:00

16 lines
283 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleInterface.h"
/**
* Interface for the OverlayEditor module
*/
class IOverlayEditorModule
: public IModuleInterface
{
public:
/** Virtual destructor */
virtual ~IOverlayEditorModule() {}
};