jumping-ship/Source/jumpingship/jumpingshipGameMode.h
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

20 lines
304 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/GameModeBase.h"
#include "jumpingshipGameMode.generated.h"
UCLASS(minimalapi)
class AjumpingshipGameMode : public AGameModeBase
{
GENERATED_BODY()
public:
AjumpingshipGameMode();
};