Files
william belcher ea066a25d4 QOL: Deprecate AVEncoder (for removal) and its dependencies (to be moved to plugins)
#rb luke.bermingham
#jira UE-174651
[FYI]

[CL 32499131 by william belcher in 5.4 branch]
2024-03-26 02:13:50 -04:00

28 lines
794 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "PlatformFeatures.h"
class FWindowsPlatformFeaturesModule : public IPlatformFeaturesModule
{
public:
/** Creates a new instance of the audio device implemented by the module. */
WINDOWSPLATFORMFEATURES_API FWindowsPlatformFeaturesModule();
WINDOWSPLATFORMFEATURES_API virtual IVideoRecordingSystem* GetVideoRecordingSystem() override;
WINDOWSPLATFORMFEATURES_API virtual class ISaveGameSystem* GetSaveGameSystem() override;
WINDOWSPLATFORMFEATURES_API void RegisterVideoRecordingSystem(TSharedPtr<IVideoRecordingSystem> VideoRecordingSystem);
private:
WINDOWSPLATFORMFEATURES_API void StartupModule() override;
private:
TSharedPtr<IVideoRecordingSystem> VideoRecordingSystem;
};