AzureAbyss/Source/the_twilight_abyss/BaseItems/Items/Jelly1.h
MH261677 7699a088ae Added Jelly1 and ItemPurchaseComponent class
Jelly1 is the test item i am creating and i also added a health variable for the temp character
2022-11-14 15:53:50 +00:00

22 lines
418 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 Buy(class UItemPurchaseComponent* PurchaseItem) override;
virtual void Use(class ATempCharacter* Character) override;
};