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

19 lines
400 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "ShootingPlant.h"
#include "HydraWeedShooter.generated.h"
class AHydraWeedCore;
UCLASS(Blueprintable)
class AHydraWeedShooter : public AShootingPlant {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
AHydraWeedCore* Core;
public:
AHydraWeedShooter();
};