Monolith/Source/Monolith/MonolithGameMode.cpp
2024-11-11 20:12:26 +00:00

15 lines
453 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MonolithGameMode.h"
#include "MonolithCharacter.h"
#include "UObject/ConstructorHelpers.h"
AMonolithGameMode::AMonolithGameMode()
: Super()
{
// set default pawn class to our Blueprinted character
// static ConstructorHelpers::FClassFinder<APawn> PlayerPawnClassFinder(TEXT("/Game/FirstPerson/Blueprints/BP_FirstPersonCharacter"));
// DefaultPawnClass = PlayerPawnClassFinder.Class;
}