Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

27 lines
355 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Module.h"
#include "XRCreativeLog.h"
#define LOCTEXT_NAMESPACE "FXRCreativeModule"
DEFINE_LOG_CATEGORY(LogXRCreative);
void FXRCreativeModule::StartupModule()
{
}
void FXRCreativeModule::ShutdownModule()
{
}
IMPLEMENT_MODULE(FXRCreativeModule, XRCreative)
#undef LOCTEXT_NAMESPACE