16 lines
319 B
C
16 lines
319 B
C
|
|
// Copyright UnexGames 2025. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "CoreMinimal.h"
|
||
|
|
#include "Modules/ModuleManager.h"
|
||
|
|
|
||
|
|
class FMultiThreadLibraryModule : public IModuleInterface
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
|
||
|
|
/** IModuleInterface implementation */
|
||
|
|
virtual void StartupModule() override;
|
||
|
|
virtual void ShutdownModule() override;
|
||
|
|
};
|