DRG-Femboy-Voice/Source/FSD/Public/PlayerShieldsMutator.h
2025-04-15 12:39:31 -07:00

17 lines
381 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Mutator.h"
#include "PlayerShieldsMutator.generated.h"
UCLASS(Blueprintable, EditInlineNew)
class UPlayerShieldsMutator : public UMutator {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float ShieldModifier;
public:
UPlayerShieldsMutator();
};