#include "Item.h" Item::Item() : ItemData() { } Item::Item(const ItemStatData& NewData) : ItemData(NewData) { } Item& Item::operator=(const Item& Other) { this->ItemData.Name = Other.GetItemName(); this->ItemData.Price = Other.GetItemPrice(); return *this; } Item::~Item() { } void Item::Initalize() { } void Item::Release() { }