2024-02-09 21:17:46 -05:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
|
|
|
|
#include "InventoryItem.h"
|
|
|
|
|
|
|
|
FInventoryItem::FInventoryItem()
|
|
|
|
{
|
2024-09-27 21:29:58 +09:00
|
|
|
this->ItemID = FName(TEXT("No ID"));
|
2024-02-09 21:17:46 -05:00
|
|
|
this->ItemName = FText::FromString("No Name");
|
|
|
|
this->ItemWeight = 1;
|
2024-08-22 23:24:14 +09:00
|
|
|
this->ItemValue = 1;
|
2024-02-09 21:17:46 -05:00
|
|
|
this->ItemDescription = FText::FromString("No Description");
|
|
|
|
}
|