0e42abd151
This reverts commit c07d621e9b
.
12 lines
279 B
C++
12 lines
279 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "InventoryItem.h"
|
|
|
|
FInventoryItem::FInventoryItem()
|
|
{
|
|
this->ItemName = FText::FromString("No Name");
|
|
this->ItemWeight = 1;
|
|
this->ItemDescription = FText::FromString("No Description");
|
|
}
|