11 lines
211 B
C
Executable file
11 lines
211 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ETrackBuildPlacementState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ETrackBuildPlacementState : uint8 {
|
|
NotBeingPlaced,
|
|
BeingPlaced,
|
|
Finished,
|
|
};
|
|
|