AzureAbyss/Source/the_twilight_abyss/BaseItems/Items/EatableItems.h
MH261677 e602d83a31 Updated Inventory system for Items in UI
The Inventory System is working fully with the healing jelly working
2022-11-15 00:04:46 +00:00

23 lines
378 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "BaseItem.h"
#include "EatableItems.generated.h"
/**
*
*/
UCLASS()
class THE_TWILIGHT_ABYSS_API UEatableItems : public UBaseItem
{
GENERATED_BODY()
UEatableItems();
protected:
virtual void Use(class ATempCharacter* Character) override;
};