new branch: working
This commit is contained in:
@@ -2,6 +2,19 @@
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
Item::Item() {
|
||||
initialize();
|
||||
}
|
||||
|
||||
Item::Item(const char* str) : name(str)
|
||||
{
|
||||
initialize();
|
||||
}
|
||||
|
||||
void Item::initialize()
|
||||
{
|
||||
}
|
||||
|
||||
void Item::setName(std::string& str)
|
||||
{
|
||||
name = str;
|
||||
@@ -11,3 +24,11 @@ const std::string& Item::getName() const
|
||||
{
|
||||
return name;
|
||||
}
|
||||
|
||||
void Item::initializeLocally()
|
||||
{
|
||||
}
|
||||
|
||||
void Item::initializeGlobally()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user