Files
UnrealEngine/Engine/Plugins/Media/PixelStreaming/Source/PixelStreamingBlueprint/Private/PixelStreamingBlueprintModule.cpp
2025-05-18 13:04:45 +08:00

18 lines
451 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "PixelStreamingBlueprintPrivate.h"
#include "Modules/ModuleManager.h"
DEFINE_LOG_CATEGORY(LogPixelStreamingBlueprint);
class FPixelStreamingBlueprintModule : public IModuleInterface
{
public:
private:
/** IModuleInterface implementation */
void StartupModule() override {}
void ShutdownModule() override {}
};
IMPLEMENT_MODULE(FPixelStreamingBlueprintModule, PixelStreamingBlueprint)