83d4d16588
Updated all the scripts adding more functionality, Currently just added a very basic Use item and it giving the character health.
21 lines
347 B
C++
21 lines
347 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "BaseItem.h"
|
|
#include "Jelly1.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class THE_TWILIGHT_ABYSS_API UJelly1 : public UBaseItem
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
protected:
|
|
|
|
virtual void Use(class ATempCharacter* Character) override;
|
|
};
|