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

24 lines
597 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "EnemyPawn.h"
#include "HydraWeedCore.generated.h"
class AHydraWeedHealer;
class AHydraWeedShooter;
UCLASS(Blueprintable)
class AHydraWeedCore : public AEnemyPawn {
GENERATED_BODY()
public:
AHydraWeedCore();
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void WakupCore();
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void OnShooterKilled(AHydraWeedShooter* shooter);
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void OnHealerKilled(AHydraWeedHealer* healer);
};