16 lines
261 B
C
Executable file
16 lines
261 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EItemCategory.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EItemCategory : uint8 {
|
|
PrimaryWeapon,
|
|
SecondaryWeapon,
|
|
TraversalTool,
|
|
ClassTool,
|
|
Grenade,
|
|
Flare,
|
|
MiningTool,
|
|
Armor,
|
|
};
|
|
|