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

19 lines
417 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "DeepPathfinderCharacter.h"
#include "Maggot.generated.h"
class USimpleHealthComponent;
UCLASS(Blueprintable)
class AMaggot : public ADeepPathfinderCharacter {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
USimpleHealthComponent* HealthComponent;
public:
AMaggot();
};