You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Zousar.Shaker #rnx #preflight 6270509a220f89f0ad573030 [CL 20016982 by Matt Peters in ue5-main branch]
16 lines
483 B
C++
16 lines
483 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
#include "AssetRegistry/AssetRegistryModule.h"
|
|
#include "AssetRegistry.h"
|
|
#include "AssetRegistryConsoleCommands.h"
|
|
|
|
IMPLEMENT_MODULE( FAssetRegistryModule, AssetRegistry );
|
|
|
|
void FAssetRegistryModule::StartupModule()
|
|
{
|
|
// Create the UAssetRegistryImpl default object early, so it is ready for the caller of LoadModuleChecked<FAssetRegistryModule>().Get()
|
|
LLM_SCOPE(ELLMTag::AssetRegistry);
|
|
GetDefault<UAssetRegistryImpl>();
|
|
}
|