mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-03 04:03:37 +00:00
12 lines
250 B
C
12 lines
250 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortDeliveryInfoBuildingActorSpecification.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EFortDeliveryInfoBuildingActorSpecification : uint8 {
|
|
All,
|
|
PlayerBuildable,
|
|
NonPlayerBuildable,
|
|
};
|
|
|