Illusion-UE5/hwanyoung2/Source/hwanyoung2/HYConsumableItem.h

26 lines
471 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "HYManualPickUp.h"
#include "HYConsumableItem.generated.h"
/**
*
*/
UCLASS()
class HWANYOUNG2_API AHYConsumableItem : public AHYManualPickUp
{
GENERATED_BODY()
public:
AHYConsumableItem();
UFUNCTION(BlueprintImplementableEvent, BlueprintCallable, Category = "Pick up and consume")
void OnUsed(APlayerController* Controller);
};