11 lines
180 B
C
Executable file
11 lines
180 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ESpawnSettings.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ESpawnSettings : uint8 {
|
|
Normal,
|
|
NoSpawning,
|
|
SpawnAll,
|
|
};
|
|
|