Files
UnrealEngine/Engine/Plugins/Media/ElectraPlayer/Source/ElectraPlayerRuntime/Public/IElectraPlayerRuntimeModule.h
2025-05-18 13:04:45 +08:00

24 lines
469 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Templates/SharedPointer.h"
#include "Modules/ModuleInterface.h"
/**
* Interface for the ElectraPlayerRuntime module.
*/
class IElectraPlayerRuntimeModule
: public IModuleInterface
{
public:
/**
* Is the ElectraPlayerRuntime module initialized?
* @return True if the module is initialized.
*/
virtual bool IsInitialized() const = 0;
virtual ~IElectraPlayerRuntimeModule() { }
};