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

18 lines
421 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "Projectile.h"
#include "HydraWeedSpawnProjectile.generated.h"
UCLASS(Blueprintable)
class AHydraWeedSpawnProjectile : public AProjectile {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FVector TargetLocation;
public:
AHydraWeedSpawnProjectile();
};