First commit
This commit is contained in:
21
MbDCode/Item.cpp
Normal file
21
MbDCode/Item.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#include "Item.h"
|
||||
|
||||
void MbD::Item::setName(std::string& str)
|
||||
{
|
||||
name = str;
|
||||
}
|
||||
|
||||
const std::string& MbD::Item::getName() const
|
||||
{
|
||||
return name;
|
||||
}
|
||||
//
|
||||
//void MbD::Item::setMyInt(int val)
|
||||
//{
|
||||
// myInt = val;
|
||||
//}
|
||||
//
|
||||
//int MbD::Item::getMyInt()
|
||||
//{
|
||||
// return myInt;
|
||||
//}
|
||||
Reference in New Issue
Block a user