Files
UnrealEngine/Engine/Source/Editor/PIEPreviewDeviceSpecification/Private/PIEPreviewDeviceSpecification.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

27 lines
674 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "PIEPreviewDeviceSpecification.h"
#include "Modules/ModuleInterface.h"
#include "Modules/ModuleManager.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(PIEPreviewDeviceSpecification)
class FPIEPreviewDeviceSpecificationModule
: public IModuleInterface
{
public:
// IModuleInterface interface
virtual void StartupModule() override { }
virtual void ShutdownModule() override { }
};
IMPLEMENT_MODULE(FPIEPreviewDeviceSpecificationModule, PIEPreviewDeviceSpecification);
UPIEPreviewDeviceSpecification::UPIEPreviewDeviceSpecification(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
}