InteractDialogue.h 449 B

1234567891011121314151617181920
  1. // Fill out your copyright notice in the Description page of Project Settings.
  2. #pragma once
  3. #include "CoreMinimal.h"
  4. #include "Interaction.h"
  5. #include "InteractDialogue.generated.h"
  6. /**
  7. *
  8. */
  9. UCLASS()
  10. class RAAN_API UInteractDialogue : public UInteraction
  11. {
  12. GENERATED_BODY()
  13. UPROPERTY(VisibleAnywhere, BlueprintReadWrite, Category="Dialogue", meta = (AllowPrivateAccess = "true"))
  14. FText DialogueText;
  15. virtual void Interact() override;
  16. };