You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-182297 #preflight 64381b51df20983c41604681 [CL 25039205 by patrick boutot in ue5-main branch]
29 lines
593 B
C++
29 lines
593 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Engine/Blueprint.h"
|
|
|
|
#include "MVVMViewModelBlueprint.generated.h"
|
|
|
|
class FKismetCompilerContext;
|
|
|
|
class FCompilerResultsLog;
|
|
class UEdGraph;
|
|
class UMVVMViewModelBlueprintGeneratedClass;
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS(Deprecated)
|
|
class UE_DEPRECATED(5.3, "The prototype viewmodel editor is deprecated. Use the regular Blueprint editor.")
|
|
MODELVIEWVIEWMODELBLUEPRINT_API UDEPRECATED_MVVMViewModelBlueprint : public UBlueprint
|
|
{
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
#if UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2
|
|
#include "CoreMinimal.h"
|
|
#endif
|