18 lines
316 B
C++
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;
|
|
};
|