AzureAbyss/Source/the_twilight_abyss/BaseItems/Items/EatableItems.cpp

16 lines
270 B
C++
Raw Normal View History

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