Files
UnrealEngine/Engine/Source/Developer/FunctionalTesting/Private/FunctionalTestGameMode.cpp
2025-05-18 13:04:45 +08:00

14 lines
374 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "FunctionalTestGameMode.h"
#include "GameFramework/SpectatorPawn.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(FunctionalTestGameMode)
AFunctionalTestGameMode::AFunctionalTestGameMode(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
DefaultPawnClass = ASpectatorPawn::StaticClass();
}