You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Aditya.RaviChandran #preflight 6447d790024bc608e64d74bc [CL 25197326 by lauren barnes in ue5-main branch]
18 lines
437 B
C++
18 lines
437 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
class FText;
|
|
|
|
struct FPropertyViewHelper
|
|
{
|
|
static const FText UndefinedObjectText;
|
|
static const FText UnloadedObjectText;
|
|
static const FText UnknownErrorText;
|
|
static const FText EditorOnlyText;
|
|
static const FText UndefinedPropertyText;
|
|
static const FText UnknownPropertyText;
|
|
static const FText InvalidPropertyText;
|
|
static const FText UnsupportedPropertyText;
|
|
};
|