EndlessZombie/Source/EndlessZombie/EndlessZombieGameMode.h
JKuijperM 183adf599b Restart implemented
Added the restart level functionality binding to the R key to test the game without stopping the engine
2023-03-12 11:05:03 +01:00

22 lines
333 B
C++

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