LEAP Documentation 40220
Documentation for the LEAP project
PlatformDependentTextBlock.h
Go to the documentation of this file.
1// Fill out your copyright notice in the Description page of Project Settings.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Components/TextBlock.h"
7#include "PlatformDependentTextBlock.generated.h"
8
9UCLASS()
10class PROJECTX_API UPlatformDependentTextBlock : public UTextBlock
11{
12 GENERATED_BODY()
13
14 virtual TSharedRef<SWidget> RebuildWidget() override;
15
16public:
18 UPROPERTY(EditAnywhere, Category = Content, meta = (MultiLine = "true"))
19 FText PS4Text;
21 UPROPERTY(EditAnywhere, Category = Content, meta = (MultiLine = "true"))
22 FText XB1Text;
23};
Definition: PlatformDependentTextBlock.h:11