mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
24 lines
703 B
C++
24 lines
703 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ArsenicCorePopulationGridCellData.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FArsenicCorePopulationGridCellData {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
uint8 NumGhostPlayers;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
uint8 NumGhostBots;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
uint8 NumHumanPlayers;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
uint8 NumHumanBots;
|
|
|
|
ARSENICCORERUNTIME_API FArsenicCorePopulationGridCellData();
|
|
};
|
|
|