AzureAbyss/Source/the_twilight_abyss/BaseItems/Items/Jelly1.h
MH261677 83d4d16588 Updated BaseItem,Jelly1,Inventory Component,Temp
Updated all the scripts adding more functionality, Currently just added a very basic Use item and it giving the character health.
2022-11-14 16:52:57 +00:00

21 lines
347 B
C++

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