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

19 lines
510 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "ClipBasedItemAggregator.h"
#include "AmmoDriveWeaponAggregator.generated.h"
class AAmmoDrivenWeapon;
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UAmmoDriveWeaponAggregator : public UClipBasedItemAggregator {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
AAmmoDrivenWeapon* Weapon;
public:
UAmmoDriveWeaponAggregator();
};