2026-03-15 16:19:51 -04:00
|
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
|
#include "Blueprint/UserWidget.h"
|
|
|
|
|
|
#include "FleetId.generated.h"
|
|
|
|
|
|
|
|
|
|
|
|
class UTextBlock;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
|
|
|
UCLASS()
|
|
|
|
|
|
class DEDICATEDSERVERS_API UFleetId : public UUserWidget
|
|
|
|
|
|
{
|
|
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
2026-03-18 06:58:22 -04:00
|
|
|
|
UPROPERTY(meta = (BindWidget), BlueprintReadWrite)
|
2026-03-15 16:19:51 -04:00
|
|
|
|
TObjectPtr<UTextBlock> TextBlock_FleetId;
|
|
|
|
|
|
};
|