File size: 312 Bytes
e3db8a9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | // 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;
};
|