RealtimeStyleTransferRuntime/Source/LyraGame/Tests/LyraTestControllerBootTest.h

27 lines
849 B
C
Raw Permalink Normal View History

2022-05-23 18:41:30 +00:00
// Copyright Epic Games, Inc.All Rights Reserved.
#pragma once
#include "GauntletTestControllerBootTest.h"
2022-09-13 07:18:28 +00:00
#include "UObject/UObjectGlobals.h"
2022-05-23 18:41:30 +00:00
#include "LyraTestControllerBootTest.generated.h"
2022-09-13 07:18:28 +00:00
class UObject;
2022-05-23 18:41:30 +00:00
UCLASS()
class ULyraTestControllerBootTest : public UGauntletTestControllerBootTest
{
GENERATED_BODY()
protected:
// This test needs a delay as the test can be over before focus is returned to Gauntlet after launching the game.
// This can cause the test to be over before Gauntlet can even know that it is running and will cause the test to fail.
//@TODO: Comment and delay copied from ShooterGame. Still needed?
const double TestDelay = 20.0f;
//~UGauntletTestControllerBootTest interface
virtual bool IsBootProcessComplete() const override;
//~End of UGauntletTestControllerBootTest interface
};