October3d55/M/PICOXRPlugin/Source/PICOXRMR/Public/IPXR_MRModule.h

23 lines
616 B
C
Raw Normal View History

2025-07-29 14:53:32 +08:00
// Copyright PICO Technology Co., Ltd. All rights reserved.
// This plugin incorporates portions of the Unreal® Engine. Unreal® is a trademark or registered trademark of Epic Games, Inc. in the United States of America and elsewhere.
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleManager.h"
class IPICOXRMRModule : public IModuleInterface
{
public:
static inline IPICOXRMRModule& Get()
{
return FModuleManager::GetModuleChecked<IPICOXRMRModule>("PICOXRMR");
}
static inline bool IsAvailable()
{
return FModuleManager::Get().IsModuleLoaded("PICOXRMR");
}
};