Files
UnrealEngine/Engine/Source/Editor/OverlayEditor/Public/IOverlayEditorModule.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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() {}
};