mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-03 04:03:37 +00:00
13 lines
198 B
C
13 lines
198 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EStructuralWallPosition.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EStructuralWallPosition : uint8 {
|
|
Left,
|
|
Right,
|
|
Front,
|
|
Back,
|
|
};
|
|
|