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

16 lines
258 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "Jelly1.h"
#include "the_twilight_abyss/PlayerTemp/TempCharacter.h"
void UJelly1::Use(ATempCharacter* Character)
{
if(Character)
{
Character->Health += 10;
}
}