17 lines
364 B
C++
Executable file
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);
|
|
|
|
};
|
|
|