11 lines
181 B
C
Executable file
11 lines
181 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ESchematicState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ESchematicState : uint8 {
|
|
NotOwned,
|
|
Owned,
|
|
OwnedBuilt,
|
|
};
|
|
|