13 lines
231 B
C
Executable file
13 lines
231 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EDroppableOutpostState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EDroppableOutpostState : uint8 {
|
|
WaitingToDrop,
|
|
Drilling,
|
|
Landed,
|
|
PrepTakeoff,
|
|
Departing,
|
|
};
|
|
|