83d4d16588
Updated all the scripts adding more functionality, Currently just added a very basic Use item and it giving the character health.
16 lines
258 B
C++
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;
|
|
}
|
|
}
|