Files
UnrealEngine/Engine/Plugins/Interchange/Runtime/Source/Parsers/CommonParser/Private/InterchangeCommonParserModule.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

24 lines
631 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "InterchangeCommonParserModule.h"
#include "Modules/ModuleInterface.h"
#include "Modules/ModuleManager.h"
FInterchangeCommonParserModule& FInterchangeCommonParserModule::Get()
{
return FModuleManager::LoadModuleChecked< FInterchangeCommonParserModule >(INTERCHANGECOMMONPARSER_MODULE_NAME);
}
bool FInterchangeCommonParserModule::IsAvailable()
{
return FModuleManager::Get().IsModuleLoaded(INTERCHANGECOMMONPARSER_MODULE_NAME);
}
void FInterchangeCommonParserModule::StartupModule()
{
}
IMPLEMENT_MODULE(FInterchangeCommonParserModule, InterchangeCommonParser);