mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
14 lines
233 B
C++
14 lines
233 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortAIWaveProgressSection.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
namespace EFortAIWaveProgressSection {
|
|
enum Type {
|
|
SectionOne,
|
|
SectionTwo,
|
|
Max_None,
|
|
};
|
|
}
|
|
|