Files
UnrealEngine/Engine/Plugins/Media/ElectraPlayer/Source/ElectraPlayerPluginHandler/Public/ElectraPlayerPluginHandlerModule.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

20 lines
404 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleManager.h"
#define UE_API ELECTRAPLAYERPLUGINHANDLER_API
class FElectraPlayerPluginHandlerModule : public IModuleInterface
{
public:
/** IModuleInterface implementation */
UE_API virtual void StartupModule() override;
UE_API virtual void ShutdownModule() override;
};
#undef UE_API