A Demo Project for the UnrealEngineSDK
Loading...
Searching...
No Matches
PixoTutorialFunctionLibrary.h
Go to the documentation of this file.
1// Copyright(c) PixoVR, LLC. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Kismet/BlueprintFunctionLibrary.h"
7#include "PixoTutorialFunctionLibrary.generated.h"
8
9UCLASS()
10class PIXOTUTORIAL_API UPixoTutorialFunctionLibrary : public UBlueprintFunctionLibrary
11{
12 GENERATED_BODY()
13
14 UFUNCTION(BlueprintPure, Category = "PixoTutorial Functions")
15 static FName GetNameOfHubMap();
16
17 UFUNCTION(BlueprintPure, Category = "PixoTutorial Functions")
18 static bool GetAutomaticallySkipTutorial();
19};