11 lines
187 B
C
Executable file
11 lines
187 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EThrownGrenadeItemState.generated.h"
|
|
|
|
UENUM()
|
|
enum class EThrownGrenadeItemState : int32 {
|
|
NotEquipped,
|
|
Cooking,
|
|
Throwing,
|
|
};
|
|
|