25 lines
339 B
C
25 lines
339 B
C
// Copyright Low Entry. Apache License, Version 2.0.
|
|
|
|
#pragma once
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "ELowEntryExtendedStandardLibrary0to9.generated.h"
|
|
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ELowEntryExtendedStandardLibrary0to9 : uint8
|
|
{
|
|
_0_ = 0,
|
|
_1_ = 1,
|
|
_2_ = 2,
|
|
_3_ = 3,
|
|
_4_ = 4,
|
|
_5_ = 5,
|
|
_6_ = 6,
|
|
_7_ = 7,
|
|
_8_ = 8,
|
|
_9_ = 9,
|
|
};
|