UnrealFightingFramework/Source/UnrealFightingFramework/UnrealFightingFrameworkModule.h

15 lines
300 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleManager.h"
class FUnrealFightingFrameworkModule : public IModuleInterface
{
public:
/** IModuleInterface implementation */
virtual void StartupModule() override;
virtual void ShutdownModule() override;
};