First commit
This commit is contained in:
17
MbDCode/MbDCode.cpp
Normal file
17
MbDCode/MbDCode.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#include <iostream>
|
||||
#include "Item.h"
|
||||
#include "System.h"
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
int main()
|
||||
{
|
||||
std::cout << "Hello World!\n";
|
||||
auto& TheSystem = System::getInstance();
|
||||
std::string str = "TheSystem";
|
||||
TheSystem.setName(str);
|
||||
std::cout << TheSystem.getName();
|
||||
//auto fixedPart = std::make_shared<Part>();
|
||||
//str = "FixedPart";
|
||||
//fixedPart->setName(str);
|
||||
}
|
||||
Reference in New Issue
Block a user