12 lines
226 B
C
Executable file
12 lines
226 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EPlatformGunUpgrades.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EPlatformGunUpgrades : uint8 {
|
|
BiggerPlatform,
|
|
LessFallDamage,
|
|
BugRepellant,
|
|
CubePlatform,
|
|
};
|
|
|