17 lines
272 B
C
17 lines
272 B
C
|
|
// Copyright Low Entry. Apache License, Version 2.0.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
|
||
|
|
#include "CoreMinimal.h"
|
||
|
|
|
||
|
|
#include "ELowEntryExtendedStandardLibraryTrueOrFalse.generated.h"
|
||
|
|
|
||
|
|
|
||
|
|
UENUM(BlueprintType)
|
||
|
|
enum class ELowEntryExtendedStandardLibraryTrueOrFalse : uint8
|
||
|
|
{
|
||
|
|
_True_,
|
||
|
|
_False_,
|
||
|
|
};
|