7699a088ae
Jelly1 is the test item i am creating and i also added a health variable for the temp character
15 lines
263 B
C++
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);
|
|
}
|