17 lines
279 B
C
Executable file
17 lines
279 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EArmorSetLegs.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EArmorSetLegs : uint8 {
|
|
Invalid,
|
|
LeftUpperLeg,
|
|
LeftLowerLeg,
|
|
LeftFoot,
|
|
LeftToe,
|
|
RightUpperLeg,
|
|
RightLowerLeg,
|
|
RightFoot,
|
|
RightToe,
|
|
};
|
|
|