LEAP Documentation 40220
Documentation for the LEAP project
DialogueWidget.h
Go to the documentation of this file.
1// Copyright Blue Isle Studios Inc 2021. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
7#include "DialogueWidget.generated.h"
8
9UCLASS()
10class PROJECTX_API UDialogueWidget : public UHUDBasicUserWidget
11{
12 GENERATED_BODY()
13
14public:
15 UFUNCTION(BlueprintImplementableEvent)
16 void OnStartTalking(const FText& Dialogue, float DurationSeconds);
17
18 UFUNCTION(BlueprintImplementableEvent)
19 void OnStopTalking();
20};
Definition: DialogueWidget.h:11
Definition: HUDBasicUserWidget.h:14