14 lines
250 B
C
Executable file
14 lines
250 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EDrinkableAlcoholStrength.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EDrinkableAlcoholStrength : uint8 {
|
|
NonAlcoholic,
|
|
Light,
|
|
Regular,
|
|
Strong,
|
|
VeryStrong,
|
|
InstantPassout,
|
|
};
|
|
|