e928b223c8
Added the third person starter content in the game so I can start making the 3rd person to 1st person switch mechanic.
20 lines
313 B
C++
20 lines
313 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "GameFramework/GameModeBase.h"
|
|
#include "TP_ThirdPersonGameMode.generated.h"
|
|
|
|
UCLASS(minimalapi)
|
|
class ATP_ThirdPersonGameMode : public AGameModeBase
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
ATP_ThirdPersonGameMode();
|
|
};
|
|
|
|
|
|
|