CameraCaptureDemo/Plugins/CameraCapture/Source/CameraCaptureModule.cpp
2026-02-25 18:11:37 +08:00

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)