vampires/Source/vampires/GoldPickup.h

25 lines
538 B
C
Raw Normal View History

2025-02-05 23:12:03 +00:00
// Louis Hobbs | 2024-2025
2024-06-19 17:24:36 +01:00
#pragma once
#include "CoreMinimal.h"
#include "Pickup.h"
#include "GoldPickup.generated.h"
/**
*
*/
UCLASS()
class VAMPIRES_API AGoldPickup : public APickup
{
GENERATED_BODY()
2024-06-24 21:42:33 +01:00
2024-06-19 17:24:36 +01:00
protected:
virtual void BeginPlay() override;
public:
virtual void OnInnerBeginOverlap(UPrimitiveComponent* OverlappedComponent, AActor* OtherActor,
2024-06-19 17:24:36 +01:00
UPrimitiveComponent* OtherComp, int32 OtherBodyIndex, bool bFromSweep,
const FHitResult& SweepResult) override;
};