mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 12:13:25 +00:00
12 lines
173 B
C
12 lines
173 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ECodeTokenPlatform.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ECodeTokenPlatform : uint8 {
|
|
PC,
|
|
PS4,
|
|
XBOX,
|
|
};
|
|
|