AzureAbyss/Source/the_twilight_abyss/BaseItems/Items/BaseItem.cpp
MH261677 7a8dead59b Added Default Item to test
Added a default item to the inventory BP.
2022-11-14 20:28:34 +00:00

17 lines
298 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");
}
void UBaseItem::Use(ATempCharacter* Character)
{
}