23 lines
422 B
C
23 lines
422 B
C
![]() |
// 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))
|
||
|
UTextBlock * OpIdTextBlock;
|
||
|
void NativeOnInitialized() override;
|
||
|
};
|