Files
UnrealEngine/Engine/Plugins/Online/OnlineFramework/Source/Hotfix/Public/HotfixModule.h
2025-05-18 13:04:45 +08:00

18 lines
316 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleInterface.h"
/**
* Module for Hotfix base implementation
*/
class FHotfixModule :
public IModuleInterface
{
private:
// IModuleInterface
virtual void StartupModule() override;
virtual void ShutdownModule() override;
};