second good build. Joints

This commit is contained in:
Aik-Siong Koh
2023-05-05 19:01:53 -06:00
parent 697aad4db9
commit d5ac041906
84 changed files with 1616 additions and 174 deletions

View File

@@ -1,21 +1,13 @@
#include "Item.h"
void MbD::Item::setName(std::string& str)
using namespace MbD;
void Item::setName(std::string& str)
{
name = str;
}
const std::string& MbD::Item::getName() const
const std::string& Item::getName() const
{
return name;
}
//
//void MbD::Item::setMyInt(int val)
//{
// myInt = val;
//}
//
//int MbD::Item::getMyInt()
//{
// return myInt;
//}