mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 04:23:31 +00:00
18 lines
418 B
C++
18 lines
418 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortAthenaMutator.h"
|
|
#include "FortAthenaMutator_BlockBuilding.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class AFortAthenaMutator_BlockBuilding : public AFortAthenaMutator {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
bool bBlockBuilding;
|
|
|
|
public:
|
|
AFortAthenaMutator_BlockBuilding();
|
|
};
|
|
|