mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +00:00
12 lines
198 B
C
12 lines
198 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortCollectionBookState.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EFortCollectionBookState : uint8 {
|
|
Active,
|
|
Completed,
|
|
Claimed,
|
|
};
|
|
|