GUI/main/main.cpp

10 lines
158 B
C++

#include "../src/GUI.hpp"
/** main
* The main function executes the functions of the GUI.
*/
int main(int argc, char **argv) {
GUI_run(argc,argv);
}