Files
UnrealEngine/Engine/Source/Developer/LauncherServices/Private/Launcher/LauncherProjectPath.h
2025-05-18 13:04:45 +08:00

25 lines
469 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
/**
* Implements the launcher project path utilities.
*/
class FLauncherProjectPath
{
public:
/**
* Gets the name of the Unreal project to use.
*/
static FString GetProjectName(const FString& ProjectPath);
/**
* Gets the base project path for the project (e.g. Samples/Showcases/MyShowcase)
*/
static FString GetProjectBasePath(const FString& ProjectPath);
};