Files
UnrealEngine/Engine/Source/Runtime/AugmentedReality/Public/ARSystemSupportBase.h
2025-05-18 13:04:45 +08:00

18 lines
357 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
// Common implementation that can be shared by mnay ARSystemSupport implementations
#pragma once
#include "ARSystem.h"
class AUGMENTEDREALITY_API FARSystemSupportBase : public IARSystemSupport
{
public:
virtual bool OnPinComponentToARPin(USceneComponent* ComponentToPin, UARPin* Pin) override;
};