11 lines
180 B
C
Executable file
11 lines
180 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ECommunityGoalTier.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ECommunityGoalTier : uint8 {
|
|
Bronze,
|
|
Silver,
|
|
Gold,
|
|
};
|
|
|