blaster/Source/Blaster/HUD/Announcement.h

28 lines
481 B
C
Raw Normal View History

2022-05-10 11:31:39 +00:00
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Blueprint/UserWidget.h"
#include "Announcement.generated.h"
/**
*
*/
UCLASS()
class BLASTER_API UAnnouncement : public UUserWidget
{
GENERATED_BODY()
public:
UPROPERTY(meta = (BindWidget))
2022-05-10 20:34:28 +00:00
class UTextBlock* WarmupTime;
2022-05-10 11:31:39 +00:00
UPROPERTY(meta = (BindWidget))
2022-05-10 20:34:28 +00:00
UTextBlock* AnnouncementText;
2022-05-10 12:55:02 +00:00
UPROPERTY(meta = (BindWidget))
2022-05-10 20:34:28 +00:00
UTextBlock* InfoText;
2022-05-10 12:55:02 +00:00
2022-05-10 11:31:39 +00:00
};