UnrealFightingFramework/Source/UnrealFightingEngine/UnrealFightingEngineModule.h

15 lines
297 B
C
Raw Normal View History

2023-06-03 17:48:17 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleManager.h"
class FUnrealFightingEngineModule : public IModuleInterface
{
public:
/** IModuleInterface implementation */
virtual void StartupModule() override;
virtual void ShutdownModule() override;
};