mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
23 lines
548 B
C++
23 lines
548 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortAthenaTutorialBaseInteraction.h"
|
|
#include "FortAthenaTutorialButton.generated.h"
|
|
|
|
class UButton;
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class UFortAthenaTutorialButton : public UFortAthenaTutorialBaseInteraction {
|
|
GENERATED_BODY()
|
|
public:
|
|
private:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
UButton* Button_Tutorial;
|
|
|
|
public:
|
|
UFortAthenaTutorialButton();
|
|
UFUNCTION(BlueprintCallable)
|
|
void OnTutorialButtonClicked();
|
|
|
|
};
|
|
|