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