14 lines
237 B
C
Executable file
14 lines
237 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EPlatformRestriction.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EPlatformRestriction : uint8 {
|
|
Editor,
|
|
Steam,
|
|
Oddish,
|
|
UniversalWindowsPlatform,
|
|
XBoxOne,
|
|
PS4,
|
|
};
|
|
|