2025-05-06 21:24:10 +01:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "Blueprint/UserWidget.h"
|
|
|
|
#include <Components/TextBlock.h>
|
|
|
|
#include "MyUserWidget.generated.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
UCLASS()
|
|
|
|
class MYPROJECT_API UMyUserWidget : public UUserWidget
|
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
UPROPERTY(meta=(BindWidget))
|
2025-05-07 21:38:27 +01:00
|
|
|
UTextBlock * opIdTextBlock;
|
|
|
|
|
2025-05-06 21:24:10 +01:00
|
|
|
void NativeOnInitialized() override;
|
|
|
|
};
|