22 lines
368 B
C
Executable file
22 lines
368 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EMiningPodState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EMiningPodState : uint8 {
|
|
Dropping,
|
|
Drilling,
|
|
Landed,
|
|
PrepTakeoff,
|
|
Departing,
|
|
WaitingForGameStart,
|
|
InSpace,
|
|
Destroy,
|
|
WaitOnSpacerig,
|
|
ExitSpacerig,
|
|
Damaged,
|
|
PoweringUp,
|
|
PoweredUp,
|
|
DeepDiveDeparture,
|
|
};
|
|
|