Files
UnrealTraining/Source/TutoBegginer/Game/RollaBallWidget.h
2025-07-15 16:48:22 +02:00

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 );
};