27 lines
727 B
C++
27 lines
727 B
C++
// Copyright HTC Corporation. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "IDetailCustomization.h"
|
|
#include "Input/Reply.h"
|
|
|
|
class IDetailLayoutBuilder;
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// FViveOpenXRSettingsCustomization
|
|
|
|
class FViveOpenXRSettingsCustomization : public IDetailCustomization
|
|
{
|
|
public:
|
|
// Makes a new instance of this detail layout class for a specific detail view requesting it
|
|
static TSharedRef<IDetailCustomization> MakeInstance();
|
|
|
|
// IDetailCustomization interface
|
|
virtual void CustomizeDetails(IDetailLayoutBuilder& DetailLayout) override;
|
|
// End of IDetailCustomization interface
|
|
|
|
private:
|
|
FViveOpenXRSettingsCustomization();
|
|
};
|