Illusion-UE5/hwanyoung2/Source/hwanyoung2/InventoryItem.cpp
Ji Yoon Rhee 0e42abd151 Revert "mmm"
This reverts commit c07d621e9b.
2024-02-09 21:17:46 -05:00

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");
}