You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Change consist of only forward declaration and additional includes #preflight 63789c1de30d438849c48188 #rb none [CL 23218412 by henrik karlsson in ue5-main branch]
16 lines
265 B
C++
16 lines
265 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Modules/ModuleInterface.h"
|
|
|
|
/**
|
|
* Interface for the Overlay module
|
|
*/
|
|
class IOverlayModule
|
|
: public IModuleInterface
|
|
{
|
|
public:
|
|
/** Virtual destructor */
|
|
virtual ~IOverlayModule() {}
|
|
}; |