12 lines
275 B
C++
Executable file
12 lines
275 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ItemAquisitionBase.h"
|
|
#include "UnlockedAquisition.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class FSD_API UUnlockedAquisition : public UItemAquisitionBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UUnlockedAquisition();
|
|
};
|
|
|