Files
TheracUE/Source/MyProject/Public/MyUserWidget.h

23 lines
428 B
C
Raw Normal View History

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