mirror of
https://github.com/fortressforever/enthusiastic-hat-club.git
synced 2024-11-25 21:50:59 +00:00
18 lines
298 B
C++
18 lines
298 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "GameFramework/GameModeBase.h"
|
|
#include "FFGameModeBase.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class FF_API AFFGameModeBase : public AGameModeBase
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
AFFGameModeBase();
|
|
};
|