mirror of
https://github.com/fortressforever/enthusiastic-hat-club.git
synced 2025-02-17 17:01:05 +00:00
20 lines
277 B
C
20 lines
277 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()
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
};
|