jumping-ship/Source/jumpingship/jumpingshipGameMode.cpp
Austin Szema 128f80fec9 Added the Unreal Project to the repo
Adding a Third Person Unreal Template project to the repo
2023-10-06 22:17:05 -04:00

16 lines
484 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "jumpingshipGameMode.h"
#include "jumpingshipCharacter.h"
#include "UObject/ConstructorHelpers.h"
AjumpingshipGameMode::AjumpingshipGameMode()
{
// set default pawn class to our Blueprinted character
static ConstructorHelpers::FClassFinder<APawn> PlayerPawnBPClass(TEXT("/Game/ThirdPerson/Blueprints/BP_ThirdPersonCharacter"));
if (PlayerPawnBPClass.Class != NULL)
{
DefaultPawnClass = PlayerPawnBPClass.Class;
}
}