20 lines
353 B
C++
20 lines
353 B
C++
// Copyright 2026 (c) Jupiter. All Rights Reserved.
|
|
|
|
#include "CameraCaptureModule.h"
|
|
|
|
#define LOCTEXT_NAMESPACE "FCameraCaptureModule"
|
|
|
|
DEFINE_LOG_CATEGORY(LogCameraCapture)
|
|
|
|
void FCameraCaptureModule::StartupModule()
|
|
{
|
|
}
|
|
|
|
void FCameraCaptureModule::ShutdownModule()
|
|
{
|
|
}
|
|
|
|
#undef LOCTEXT_NAMESPACE
|
|
|
|
IMPLEMENT_MODULE(FCameraCaptureModule, CameraCapture)
|