7699a088ae
Jelly1 is the test item i am creating and i also added a health variable for the temp character
22 lines
418 B
C++
22 lines
418 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 Buy(class UItemPurchaseComponent* PurchaseItem) override;
|
|
|
|
virtual void Use(class ATempCharacter* Character) override;
|
|
};
|