Files
UnrealEngineUWP/Engine/Source/Runtime/Windows/WindowsPlatformFeatures/Public/WindowsPlatformFeatures.h
william belcher ee20867fc2 QOL: Deprecate AVEncoder (for removal) and its dependencies (to be moved to plugins)
#rb luke.bermingham
#jira UE-174651
[FYI]

[CL 32265425 by william belcher in ue5-main branch]
2024-03-14 20:30:26 -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;
};