16 lines
454 B
C
16 lines
454 B
C
|
|
// Copyright 2023 PICO Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Kismet/BlueprintFunctionLibrary.h"
|
||
|
|
#include "PICO_PassthroughFunctionLibrary.generated.h"
|
||
|
|
|
||
|
|
UCLASS()
|
||
|
|
class PICOOPENXRPASSTHROUGH_API UPassthroughFunctionLibraryPICO : public UBlueprintFunctionLibrary
|
||
|
|
{
|
||
|
|
GENERATED_BODY()
|
||
|
|
|
||
|
|
public:
|
||
|
|
UFUNCTION(BlueprintCallable, Category = "PICO|Passthrough")
|
||
|
|
static bool GetSupportedPassthroughPICO(bool& Support, bool& HasColor, bool& HasDepth);
|
||
|
|
};
|