VRTowerDef/Plugins/MetaXR/Source/OculusXRPassthrough/Private/OculusXRPassthroughModule.cpp

26 lines
638 B
C++
Raw Permalink Normal View History

2024-05-29 08:53:41 +00:00
// Copyright (c) Meta Platforms, Inc. and affiliates.
#include "OculusXRPassthroughModule.h"
#define LOCTEXT_NAMESPACE "OculusXRPassthrough"
//-------------------------------------------------------------------------------------------------
// FOculusXRPassthroughModule
//-------------------------------------------------------------------------------------------------
FOculusXRPassthroughModule::FOculusXRPassthroughModule()
{
}
void FOculusXRPassthroughModule::StartupModule()
{
}
void FOculusXRPassthroughModule::ShutdownModule()
{
}
IMPLEMENT_MODULE(FOculusXRPassthroughModule, OculusXRPassthrough)
#undef LOCTEXT_NAMESPACE