You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Headers are updated to contain any missing #includes needed to compile and #includes are sorted. Nothing is removed. #ushell-cherrypick of 21065253 by bryan.sefcik #jira #preflight 62d5b3e91062f2e63014598e #ROBOMERGE-AUTHOR: bryan.sefcik #ROBOMERGE-SOURCE: CL 21152630 via CL 21156388 via CL 21157044 #ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v972-20964824) [CL 21181817 by bryan sefcik in ue5-main branch]
47 lines
1.6 KiB
C++
47 lines
1.6 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Commandlets/Commandlet.h"
|
|
#include "Containers/UnrealString.h"
|
|
#include "CoreMinimal.h"
|
|
#include "HAL/Platform.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
#include "UObject/UObjectGlobals.h"
|
|
|
|
#include "CheckAndroidDeviceProfileCommandlet.generated.h"
|
|
|
|
class UObject;
|
|
|
|
/*
|
|
* CheckAndroidDeviceProfile
|
|
* Commandlet that runs the rules in [/Script/AndroidDeviceProfileSelector.AndroidDeviceProfileMatchingRules]
|
|
* against the supplied parameters and outputs the device profile that will be matched.
|
|
* Usage:
|
|
* ProjectName -run=DeviceProfileServices.CheckAndroidDeviceProfile DeviceModel
|
|
* ProjectName -run=DeviceProfileServices.CheckAndroidDeviceProfile DeviceMake DeviceModel
|
|
* ProjectName -run=DeviceProfileServices.CheckAndroidDeviceProfile [-DeviceMake=...] [-DeviceModel=...] [-GPUFamily=...] [-GLVersion=...]
|
|
[-VulkanAvailable=True|False] [-VulkanVersion=...] [-AndroidVersion=...] [-DeviceBuildNumber=...] [-UsingHoudini=True|False] [-Hardware=...] [-Chipset=...]
|
|
* Running against
|
|
* ProjectName -run=DeviceProfileServices.CheckAndroidDeviceProfile
|
|
-DeviceSpecsFolder=<directory containing device.json files>
|
|
-DeviceSpecsFile=<path to a single device.json file>
|
|
-OutDir=<output directory>
|
|
[-OverrideDP=<optional DP name to override device profile selection>]
|
|
*/
|
|
UCLASS()
|
|
class UCheckAndroidDeviceProfileCommandlet
|
|
: public UCommandlet
|
|
{
|
|
GENERATED_BODY()
|
|
public:
|
|
|
|
//~ Begin UCommandlet Interface
|
|
|
|
virtual int32 Main(const FString& Params) override;
|
|
|
|
//~ End UCommandlet Interface
|
|
private:
|
|
|
|
};
|