7a8dead59b
Added a default item to the inventory BP.
17 lines
298 B
C++
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)
|
|
{
|
|
|
|
}
|