25 lines
466 B
C++
25 lines
466 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Blueprint/UserWidget.h"
|
|
#include "RollaBallWidget.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class TUTOBEGGINER_API URollaBallWidget : public UUserWidget
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
UFUNCTION(BlueprintImplementableEvent)
|
|
void SetTimerText( float Timestamp );
|
|
|
|
UFUNCTION(BlueprintImplementableEvent)
|
|
void SetProgress( float Progress );
|
|
};
|