14 lines
232 B
C
Executable file
14 lines
232 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ECommunityUIState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ECommunityUIState : uint8 {
|
|
Loading,
|
|
SelectFaction,
|
|
Progress,
|
|
Recruitment,
|
|
Reward,
|
|
Invalid,
|
|
};
|
|
|