You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Nathan.Mitchell, Ryan.Schmidt #jira none #preflight 6377f29c2a05dabce9561a39 [CL 23206945 by semion piskarev in ue5-main branch]
30 lines
823 B
C++
30 lines
823 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "IGeometryProcessingInterfacesModule.h"
|
|
|
|
|
|
class IGeometryProcessing_ApproximateActors;
|
|
|
|
/**
|
|
* Implementation of IGeometryProcessingInterfacesModule (which extends the standard IModuleInterface)
|
|
* to provide access to various "Operation" interfaces
|
|
*/
|
|
class FGeometryProcessingInterfacesModule : public IGeometryProcessingInterfacesModule
|
|
{
|
|
public:
|
|
|
|
virtual void StartupModule() override;
|
|
virtual void ShutdownModule() override;
|
|
|
|
|
|
/**
|
|
* @return implementation of IGeometryProcessing_ApproximateActors, if available, or nullptr (result is cached internally)
|
|
*/
|
|
virtual IGeometryProcessing_ApproximateActors* GetApproximateActorsImplementation() override;
|
|
|
|
private:
|
|
IGeometryProcessing_ApproximateActors* ApproximateActors = nullptr;
|
|
};
|