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