14 lines
155 B
C++
14 lines
155 B
C++
#include "Item.h"
|
|
|
|
using namespace MbD;
|
|
|
|
void Item::setName(std::string& str)
|
|
{
|
|
name = str;
|
|
}
|
|
|
|
const std::string& Item::getName() const
|
|
{
|
|
return name;
|
|
}
|