14 lines
339 B
C++
14 lines
339 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "InventoryItem.h"
|
|
|
|
FInventoryItem::FInventoryItem()
|
|
{
|
|
this->ItemID = FName(TEXT("No ID"));
|
|
this->ItemName = FText::FromString("No Name");
|
|
this->ItemWeight = 1;
|
|
this->ItemValue = 1;
|
|
this->ItemDescription = FText::FromString("No Description");
|
|
}
|