mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
21 lines
384 B
C
21 lines
384 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortFrontEndFeature.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EFortFrontEndFeature : uint8 {
|
|
ShowHomeBase,
|
|
ShowHeroList,
|
|
ShowVault,
|
|
ShowStore,
|
|
PlayZone,
|
|
ShowDailyRewards,
|
|
ShowHeroSelect,
|
|
RecruitHero,
|
|
ShowHomeBaseOverview,
|
|
STWArmory_Transform,
|
|
STWArmory_CollectionBook,
|
|
MAX_None,
|
|
};
|
|
|