October3d55/Matain/ViveOpenXR/Source/ViveOpenXRTracker/ViveOpenXRXrTracker/Public/IViveOpenXRXrTrackerModule.h

23 lines
526 B
C
Raw Normal View History

2025-03-10 09:43:27 +08:00
// Copyright HTC Corporation. All Rights Reserved.
#pragma once
#include "Modules/ModuleManager.h"
#include "IInputDeviceModule.h"
/**
* The public interface to this module. In most cases, this interface is only public to sibling modules
* within this plugin.
*/
class IViveOpenXRXrTrackerModule : public IInputDeviceModule
{
public:
static FName ViveOpenXRXrTrackerModularKeyName;
/** Returns modular key name for this module */
static FName GetModuleKeyName()
{
return ViveOpenXRXrTrackerModularKeyName;
}
};