Files
project-puzzle-island/Source/Puzzle_Island/Puzzle_IslandGameMode.h
2023-11-28 13:34:27 -06:00

20 lines
310 B
C++

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