mirror of
https://github.com/johndoe6345789/ArenaFPS.git
synced 2026-04-25 14:15:14 +00:00
15 lines
298 B
C++
15 lines
298 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Modules/ModuleInterface.h"
|
|
|
|
class FTopDownArenaRuntimeModule : public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
/** IModuleInterface implementation */
|
|
virtual void StartupModule() override;
|
|
virtual void ShutdownModule() override;
|
|
};
|