Files
unrealtest/Source/first/Variant_Horror/HorrorGameMode.h
T
2026-08-02 22:34:52 +03:00

22 lines
375 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/GameModeBase.h"
#include "HorrorGameMode.generated.h"
/**
* Simple GameMode for a first person horror game
*/
UCLASS(abstract)
class FIRST_API AHorrorGameMode : public AGameModeBase
{
GENERATED_BODY()
public:
/** Constructor */
AHorrorGameMode();
};