Files
UnrealEngine/Engine/Source/Runtime/NNE/Public/NNEStatus.h
2025-05-18 13:04:45 +08:00

17 lines
195 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "HAL/Platform.h"
namespace UE::NNE
{
enum class EResultStatus : uint8
{
Ok = 0,
Fail = 1
};
} // namespace UE::NNE