AzureAbyss/Source/the_twilight_abyss/BaseItems/Items/Jelly1.cpp
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

15 lines
263 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "Jelly1.h"
void UJelly1::Buy(UItemPurchaseComponent* PurchaseItem)
{
Super::Buy(PurchaseItem);
}
void UJelly1::Use(ATempCharacter* Character)
{
Super::Use(Character);
}