UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
LauncherPlatformWindows.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "ILauncherPlatform.h"
7
9{
10public:
11 // ILauncherPlatform Implementation
12 virtual bool CanOpenLauncher(bool Install) override;
13 virtual bool OpenLauncher(const FOpenLauncherOptions& Options) override;
14
15private:
16 bool IsLauncherInstalled() const;
17 bool GetLauncherInstallerPath(FString& OutInstallerPath);
18};
19
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
FLauncherPlatformWindows FLauncherPlatform
Definition LauncherPlatformWindows.h:20
Definition LauncherPlatformWindows.h:9
virtual bool OpenLauncher(const FOpenLauncherOptions &Options) override
Definition LauncherPlatformWindows.cpp:16
virtual bool CanOpenLauncher(bool Install) override
Definition LauncherPlatformWindows.cpp:9
Definition ILauncherPlatform.h:8
Definition ILauncherPlatform.h:83