EgonVM e55214a398 Started the project... finally...
Started the project. This right now only includes Meta XR and Android setup with VR template. More improvements to come!
2024-05-06 20:03:14 +03:00

26 lines
638 B
C++

// 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