GUI/main/main.cpp

9 lines
157 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);
}