Files
solver/MbDCode/MbDCode.cpp
Aik-Siong Koh 475b8d16bc First commit
2023-04-26 17:23:31 -06:00

17 lines
357 B
C++

#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);
}