mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-28 04:03:33 +00:00
18 lines
311 B
C
18 lines
311 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EDeployableBaseBuildingState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EDeployableBaseBuildingState : uint8 {
|
|
Empty,
|
|
Built,
|
|
Unoccupied,
|
|
WaitingToBuild,
|
|
Building,
|
|
WaitingToDestroy,
|
|
Destroying,
|
|
WaitingToReset,
|
|
Resetting,
|
|
};
|
|
|