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);
|
||
|
}
|