32 lines
341 B
C++
32 lines
341 B
C++
#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()
|
|
{
|
|
}
|