AzureAbyss/Source/the_twilight_abyss/BaseItems/Items/BaseItem.cpp
MH261677 83d4d16588 Updated BaseItem,Jelly1,Inventory Component,Temp
Updated all the scripts adding more functionality, Currently just added a very basic Use item and it giving the character health.
2022-11-14 16:52:57 +00:00

12 lines
244 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "BaseItem.h"
//constructor
UBaseItem::UBaseItem()
{
ItemDisplayName = FText::FromString("ItemName");
ItemUseAction = FText::FromString("UseAction");
}