mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 12:33:39 +00:00
12 lines
209 B
C
12 lines
209 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EDiscoCaptureProgressState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EDiscoCaptureProgressState : uint8 {
|
|
None,
|
|
AllyProgress,
|
|
EnemyProgress,
|
|
};
|
|
|