You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
339 B
24 lines
339 B
// 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,
|
|
};
|
|
|