24 lines
566 B
C++
Executable file
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();
|
|
|
|
};
|
|
|