This repository has been archived on 2026-05-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AgrarianGameArchive/Source/AgrarianGame/Variant_Platforming/PlatformingGameMode.h
T

22 lines
377 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/GameModeBase.h"
#include "PlatformingGameMode.generated.h"
/**
* Simple GameMode for a third person platforming game
*/
UCLASS()
class APlatformingGameMode : public AGameModeBase
{
GENERATED_BODY()
public:
/** Constructor */
APlatformingGameMode();
};