Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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() { }
};