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

24 lines
566 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "DualWieldWeapon.h"
#include "Templates/SubclassOf.h"
#include "DualMachinePistols.generated.h"
class UStatusEffect;
UCLASS(Blueprintable)
class ADualMachinePistols : public ADualWieldWeapon {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSubclassOf<UStatusEffect> EmptyClipStatusEffect;
public:
ADualMachinePistols();
protected:
UFUNCTION(BlueprintCallable, Reliable, Server)
void Server_TriggerStatusEffect();
};