mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
13 lines
269 B
C++
13 lines
269 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortHelpItem.h"
|
|
#include "FortHelpItemEntry.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class FORTNITEGAME_API UFortHelpItemEntry : public UFortHelpItem {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortHelpItemEntry();
|
|
};
|
|
|