2022-05-07 09:04:11 +00:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "Blueprint/UserWidget.h"
|
|
|
|
#include "CharacterOverlay.generated.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
UCLASS()
|
|
|
|
class BLASTER_API UCharacterOverlay : public UUserWidget
|
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
UPROPERTY(meta = (BindWidget))
|
|
|
|
class UProgressBar* HealthBar;
|
|
|
|
|
|
|
|
UPROPERTY(meta = (BindWidget))
|
|
|
|
class UTextBlock* HealthText;
|
|
|
|
|
2022-05-09 14:33:48 +00:00
|
|
|
UPROPERTY(meta = (BindWidget))
|
|
|
|
UTextBlock* ScoreValue;
|
|
|
|
|
2022-05-09 15:16:41 +00:00
|
|
|
UPROPERTY(meta = (BindWidget))
|
|
|
|
UTextBlock* DefeatsValue;
|
|
|
|
|
2022-05-09 16:39:41 +00:00
|
|
|
UPROPERTY(meta = (BindWidget))
|
|
|
|
UTextBlock* WeaponAmmoValue;
|
|
|
|
|
2022-05-09 17:35:28 +00:00
|
|
|
UPROPERTY(meta = (BindWidget))
|
|
|
|
UTextBlock* CarriedAmmoValue;
|
|
|
|
|
2022-05-10 08:40:23 +00:00
|
|
|
UPROPERTY(meta = (BindWidget))
|
|
|
|
UTextBlock* MatchCountdownText;
|
|
|
|
|
2022-05-22 13:21:17 +00:00
|
|
|
UPROPERTY(meta = (BindWidget))
|
|
|
|
UTextBlock* GrenadesAmount;
|
|
|
|
|
2022-05-07 09:04:11 +00:00
|
|
|
};
|