22 lines
430 B
C
Executable file
22 lines
430 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ECommunityGoalIndex.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ECommunityGoalIndex : uint8 {
|
|
KillBroodNexus,
|
|
KillBulkDetonators,
|
|
KillCaveLeeches,
|
|
KillJellyBreeders,
|
|
KillPretorians,
|
|
KillShellbacks,
|
|
KillSpitballers,
|
|
CollectBittergem,
|
|
CollectCompressedGold,
|
|
CollectGold,
|
|
CollectCraftingMaterials,
|
|
GainXP,
|
|
TestGoal,
|
|
Count,
|
|
};
|
|
|