mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
22 lines
636 B
C++
22 lines
636 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortAthenaTutorialBase.h"
|
|
#include "Templates/SubclassOf.h"
|
|
#include "FortAthenaTutorial_Look.generated.h"
|
|
|
|
class UFortAthenaTutorialScreen;
|
|
|
|
UCLASS(Blueprintable)
|
|
class AFortAthenaTutorial_Look : public AFortAthenaTutorialBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TSubclassOf<UFortAthenaTutorialScreen> ScreenSwipeToLook;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TSubclassOf<UFortAthenaTutorialScreen> ScreenFindMarker;
|
|
|
|
AFortAthenaTutorial_Look();
|
|
};
|
|
|