You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
33 lines
445 B
C++
33 lines
445 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
namespace UE::MVVM
|
|
{
|
|
|
|
struct FDebugItemId
|
|
{
|
|
enum class EType : uint8
|
|
{
|
|
Invalid,
|
|
View,
|
|
ViewModel,
|
|
} Type = EType::Invalid;
|
|
FGuid Id;
|
|
|
|
|
|
FDebugItemId() = default;
|
|
FDebugItemId(EType InType, FGuid InId)
|
|
: Type(InType), Id(InId)
|
|
{ }
|
|
|
|
bool operator==(const FDebugItemId& Other) const
|
|
{
|
|
return Other.Type == Type && Other.Id == Id;
|
|
}
|
|
};
|
|
|
|
}
|