mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 19:27:02 +00:00
13 lines
198 B
C
13 lines
198 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ESmartObjectSlotState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ESmartObjectSlotState : uint8 {
|
|
Free,
|
|
Claimed,
|
|
Occupied,
|
|
MAX,
|
|
};
|
|
|