mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 04:23:31 +00:00
16 lines
384 B
C++
16 lines
384 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Engine/DataTable.h"
|
|
#include "FortVariantSpawnPoints.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FFortVariantSpawnPoints : public FTableRowBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
int32 BudgetPoints;
|
|
|
|
FORTNITEGAME_API FFortVariantSpawnPoints();
|
|
};
|
|
|