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