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

17 lines
364 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "EnemyPawn.h"
#include "StabberVineRoot.generated.h"
class AStabberVine;
UCLASS(Abstract, Blueprintable)
class AStabberVineRoot : public AEnemyPawn {
GENERATED_BODY()
public:
AStabberVineRoot();
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void RemoveVine(AStabberVine* vine);
};