Line data Source code
1 : #include <filesystem> 2 : 3 : #include "UI/Simulator.hpp" 4 : 5 0 : int main(int argc, char** argv) { 6 0 : assert(argc >= 2); 7 : 8 0 : std::filesystem::path configFilePath = argv[1]; 9 : 10 0 : UI::Simulator simulator(configFilePath); 11 : 12 0 : simulator.run(); 13 : 14 0 : return 0; 15 : }