Files
jimmy andrews 5c57892f20 Add a geometry processing command line program to enable command line execution of geometry processing algorithms
+ add navigation-driven approximate convex decomposition as the first supported algorithm
#rb lonnie.li

[CL 33522576 by jimmy andrews in ue5-main branch]
2024-05-08 14:58:04 -04:00

16 lines
315 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleManager.h"
class FMeshFileUtilsModule : public IModuleInterface
{
public:
/** IModuleInterface implementation */
virtual void StartupModule() override;
virtual void ShutdownModule() override;
};