11 lines
196 B
C
Executable file
11 lines
196 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EIntoxicationState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EIntoxicationState : uint8 {
|
|
NotIntoxicated,
|
|
Intoxicated,
|
|
PassOut,
|
|
};
|
|
|