Files
UnrealEngine/Engine/Plugins/Runtime/Soundscape/Source/SoundScape/Private/SoundScapeModule.cpp
2025-05-18 13:04:45 +08:00

19 lines
296 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "SoundScapeModule.h"
#include "Modules/ModuleManager.h"
DEFINE_LOG_CATEGORY(LogSoundscape);
IMPLEMENT_MODULE(FSoundscapeModule, Soundscape)
void FSoundscapeModule::StartupModule()
{
}
void FSoundscapeModule::ShutdownModule()
{
}