You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
22 lines
552 B
C
22 lines
552 B
C
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "CoreMinimal.h"
|
||
|
|
#include "Modules/ModuleInterface.h"
|
||
|
|
#include "Modules/ModuleManager.h"
|
||
|
|
|
||
|
|
/**
|
||
|
|
* SourceControlWindowExtender module interface
|
||
|
|
*/
|
||
|
|
class ISourceControlWindowExtenderModule : public IModuleInterface
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
/**
|
||
|
|
* Get reference to the SourceControlWindowExtender module instance
|
||
|
|
*/
|
||
|
|
static inline ISourceControlWindowExtenderModule& Get()
|
||
|
|
{
|
||
|
|
return FModuleManager::LoadModuleChecked<ISourceControlWindowExtenderModule>("SourceControlWindowExtender");
|
||
|
|
}
|
||
|
|
};
|