13 lines
229 B
C
Executable file
13 lines
229 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EGooGunUpgrades.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EGooGunUpgrades : uint8 {
|
|
ChargeFire,
|
|
BurstFire,
|
|
ShotCostCharged,
|
|
ChargeTime,
|
|
ChargeShotCount,
|
|
};
|
|
|