This repository has been archived on 2024-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
StationObscurum_Unreal/Source/station_obscurum/station_obscurumGameMode.cpp
2023-09-12 21:51:28 -04:00

16 lines
504 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "station_obscurumGameMode.h"
#include "station_obscurumCharacter.h"
#include "UObject/ConstructorHelpers.h"
Astation_obscurumGameMode::Astation_obscurumGameMode()
{
// 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;
}
}