You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Add our own log categories for geometry flow and LOD toolset modules to avoid spamming LogTemp #jira UETOOL-3200 #rnx #lockdown simon.tourangeau #rb jimmy.andrews #ROBOMERGE-OWNER: tyson.brochu #ROBOMERGE-AUTHOR: tyson.brochu #ROBOMERGE-SOURCE: CL 15958824 in //UE5/Release-5.0-EarlyAccess/... #ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v787-15839533) #ROBOMERGE-CONFLICT from-shelf [CL 15978978 by tyson brochu in ue5-main branch]
18 lines
430 B
C++
18 lines
430 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
GEOMETRYFLOWMESHPROCESSING_API DECLARE_LOG_CATEGORY_EXTERN(LogGeometryFlowMeshProcessing, Log, All);
|
|
|
|
class FGeometryFlowMeshProcessingModule : public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
/** IModuleInterface implementation */
|
|
virtual void StartupModule() override;
|
|
virtual void ShutdownModule() override;
|
|
};
|