16 lines
253 B
C++
16 lines
253 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Features/IModularFeature.h"
|
|
|
|
/**
|
|
* Feature interface for a Plugins management UI
|
|
*/
|
|
class IPluginsEditorFeature: public IModularFeature
|
|
{
|
|
|
|
public:
|
|
};
|